Package de.mhus.lib.definition

Examples of de.mhus.lib.definition.DefAttribute


//    buildWithPojo(mainWindow);

    try {
//      mainWindow.setSizeFull();
      IConfig deskModel = new DefRoot( new LayVertical(
          new DefAttribute(LayoutBuilder.WIDTH, "100%"),
          new DefAttribute(LayoutBuilder.HEIGHT, "400px"),

            new DskHeader(
                new DskLogin()
            ),
//            new DskBreadcrumb(),
            new LayHorizontalSplit(
                new DskNavigation(),
                new DskContent(),
                new DefAttribute(LayoutBuilder.SPLIT_MIN, "100px"),
                new DefAttribute(LayoutBuilder.SPLIT_MAX, "400px"),
                new DefAttribute(LayoutBuilder.SPLIT_POS, "200px"),
                new DefAttribute(LayoutBuilder.WIDTH, "100%"),
                new DefAttribute(LayoutBuilder.HEIGHT, "100%"),
                new DefAttribute(LayoutBuilder.EXPAND, "1")
            )
          ) ).build();
     
      ConfigUtil.dump(deskModel,System.out);
     
View Full Code Here


public class DskBreadcrumb extends DefComponent {

  public DskBreadcrumb(IDefDefinition ... definitions)
      throws MException {
    super("breadcrumb", definitions);
    addDefinition(new DefAttribute(LayoutBuilder.EXPAND, "0"));
  }
View Full Code Here

public class DskHeader extends DefComponent {

  public DskHeader(IDefDefinition ... definitions)
      throws MException {
    super("header", definitions);
    addDefinition(new DefAttribute(LayoutBuilder.EXPAND, "0"));
  }
View Full Code Here

public class DskMainMenu extends DefComponent {

  public DskMainMenu(IDefDefinition ... definitions)
      throws MException {
    super("mainmenu", definitions);
    addDefinition(new DefAttribute(LayoutBuilder.EXPAND, "0"));
  }
View Full Code Here

TOP

Related Classes of de.mhus.lib.definition.DefAttribute

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.