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.CFBamJavaFXTZDateDefViewEditPane.java

public CFBamJavaFXTZDateDefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamTZDateDefObj argFocus) {//ww w .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.getTZDateDefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getTZDateDefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXTZTimeColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamTZTimeColObj argFocus) {/*  w ww  .  jav  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.getTZTimeColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getTZTimeColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXTZTimeDefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamTZTimeDefObj argFocus) {/*ww w.j  av 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.getTZTimeDefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getTZTimeDefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt16ColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt16ColObj argFocus) {//from   w ww . j a  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.getUInt16ColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt16ColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt16DefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt16DefObj argFocus) {//w  ww.ja  va  2  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.getUInt16DefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt16DefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt32ColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt32ColObj argFocus) {/*from  w  w  w  . j  av  a  2 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.getUInt32ColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt32ColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt32DefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt32DefObj argFocus) {/*from   ww  w.  java 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.getUInt32DefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt32DefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt64ColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt64ColObj argFocus) {/*from   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.getUInt64ColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt64ColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXUInt64DefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt64DefObj argFocus) {//www.  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.getUInt64DefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt64DefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

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

public CFBamJavaFXDelSubDep1ViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamDelSubDep1Obj argFocus) {/*from   www  . jav  a  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.getDelSubDep1Factory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getDelSubDep1Factory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}