Package org.springframework.ide.eclipse.config.graph.parts

Examples of org.springframework.ide.eclipse.config.graph.parts.DummyLayout


  protected IFigure header;

  public SubgraphFigure(IFigure header, IFigure footer, int direction) {
    this.direction = direction;
    contents = new Figure();
    contents.setLayoutManager(new DummyLayout());
    add(this.header = header);
    add(contents);
    add(this.footer = footer);
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.config.graph.parts.DummyLayout

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.