Package net.sourceforge.veditor.parser.OutlineContainer

Examples of net.sourceforge.veditor.parser.OutlineContainer.Collapsible


    }
  }
 
  protected void addCollapsible(int startLine, int endLine) {
    if (m_OutlineContainer != null) {
      Collapsible c = m_OutlineContainer.new Collapsible(startLine,
          endLine);
      m_OutlineContainer.addCollapsibleRegion(c);
    }
  }
View Full Code Here


    // find deleted elements
    Set<Collapsible> collapsibleSet = m_CollapsibleElements.keySet();
    Iterator<Collapsible> it = collapsibleSet.iterator();
    ArrayList<Collapsible> deletedItems = new ArrayList<Collapsible>();
    while (it.hasNext()) {
      Collapsible collapsible = it.next();
      ProjectionAnnotation annotation = m_CollapsibleElements.get(collapsible);
      // if the element does not exist in the new list, remove it
      boolean bFound=false;
      for(int i=0;i<newCollapsibles.length;i++){
        if (newCollapsibles[i].equals(collapsible)){
View Full Code Here

   
  }
 
  protected void addCollapsible(int startLine,int endLine){   
    if(m_OutlineContainer!=null){
      Collapsible c= m_OutlineContainer.new Collapsible(startLine,endLine);
      m_OutlineContainer.addCollapsibleRegion(c);
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.veditor.parser.OutlineContainer.Collapsible

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.