Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Change variables in variables view - Eclipse
Change variables in variables view - Eclipse [message #1718930] Sat, 02 January 2016 20:54
Rafael Cenci is currently offline Rafael CenciFriend
Messages: 1
Registered: January 2016
Junior Member
i'm not an english speaker. If i wrote some error, i ask sorry...

I want to develop a debugger in eclipse for an intelligent agents platform. I want that my view of variables show only some variables of my agents. How do i change the variables of variables view? Do i have to change the VariablesViewModelPresentation class? I tried to search for something in Variables View class, but i not found nothing.

I have configured the plugin.xml:


<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

    <!-- nova view adicionada a perspectiva de debug -->    
   <extension
         point="org.eclipse.ui.views">
      <category
            name="Debug BDI4JADE Category"
            id="Debugger_BDI4JADE">
      </category>
      <view
            name="BDI4JADE Variables View"
            icon="icons/BDI4JADE.png"
            category="Debugger_BDI4JADE"
            class="bdi4jade.debugger.BDI4JADEVariablesView"
            id="bdi4jade.debugger.BDI4JADEVariablesView">
      </view>
   </extension>
   <extension
         point="org.eclipse.ui.perspectiveExtensions">
         <perspectiveExtension
            targetID="org.eclipse.debug.ui.DebugPerspective">
         <view
               ratio="0.5"               
               relative="org.eclipse.debug.ui.ConsoleView"
               relationship="right"
               id="bdi4jade.debugger.BDI4JADEVariablesView"
               visible="false">
         </view>          
      </perspectiveExtension>
   </extension>

   <!-- nova perspectiva "DebugBDI4JADE" --> 
    <extension 
        point="org.eclipse.ui.perspectives"> 
        <perspective 
            id="org.eclipse.ui.DebugBDI4JADEPerspective" 
            name="DebugBDI4JADE" 
            class="bdi4jade.debugger.DebugBDI4JADEPerspective" 
            icon="icons/BDI4JADE.png">
        </perspective> 
    </extension>
</plugin>

Previous Topic:How to get the notification in editor when the editor file is copy pasted in the project explorer
Next Topic:handleChangedResources() ArrayIndexOutOfBoundsException
Goto Forum:
  


Current Time: Thu Apr 25 07:41:25 GMT 2024

Powered by FUDForum. Page generated in 0.02570 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top