Example usage for javafx.scene.control ScrollPane ScrollPane

List of usage examples for javafx.scene.control ScrollPane ScrollPane

Introduction

In this page you can find the example usage for javafx.scene.control ScrollPane ScrollPane.

Prototype

public ScrollPane() 

Source Link

Document

Creates a new ScrollPane.

Usage

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXDelSubDep2ViewEditPane.java

public CFBamJavaFXDelSubDep2ViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamDelSubDep2Obj argFocus) {/*from w  ww  . ja  v  a2s .com*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getDelSubDep2Factory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getDelSubDep2Factory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXDoubleTypeViewEditPane.java

public CFBamJavaFXDoubleTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamDoubleTypeObj argFocus) {//from  w  ww.ja  va  2 s .c o  m
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getDoubleTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getDoubleTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNmTokenColViewEditPane.java

public CFBamJavaFXNmTokenColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNmTokenColObj argFocus) {/* ww  w.  ja  v a 2  s .  c o  m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNmTokenColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNmTokenColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNmTokenDefViewEditPane.java

public CFBamJavaFXNmTokenDefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNmTokenDefObj argFocus) {/*from w  w  w .j  a  va2s .c o  m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNmTokenDefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNmTokenDefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNumberTypeViewEditPane.java

public CFBamJavaFXNumberTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNumberTypeObj argFocus) {//from   ww w . j a  v  a 2s  .c om
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNumberTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNumberTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXPopSubDep1ViewEditPane.java

public CFBamJavaFXPopSubDep1ViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamPopSubDep1Obj argFocus) {//from w  w w  .j  a va  2s .  com
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getPopSubDep1Factory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getPopSubDep1Factory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXPopSubDep2ViewEditPane.java

public CFBamJavaFXPopSubDep2ViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamPopSubDep2Obj argFocus) {/*www .j a  v a2 s  .c o  m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getPopSubDep2Factory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getPopSubDep2Factory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXServerProcViewEditPane.java

public CFBamJavaFXServerProcViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamServerProcObj argFocus) {/* w ww . j  a  v  a 2  s .  com*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getServerProcFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getServerProcFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXStringTypeViewEditPane.java

public CFBamJavaFXStringTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamStringTypeObj argFocus) {/*from  www.j  av a  2s.  co m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getStringTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getStringTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXTZDateTypeViewEditPane.java

public CFBamJavaFXTZDateTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamTZDateTypeObj argFocus) {/*w  w  w  .ja  va2  s .  co  m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getTZDateTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getTZDateTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}