Package DisplayProject.controls

Examples of DisplayProject.controls.CompoundGraphic


public class GraphicFactory {
    private GraphicFactory() {
        super();
    }
    public static CompoundGraphic newCompoundGraphic(){
        CompoundGraphic cg = new CompoundGraphic(null);
        cg.setLayout(null);
        cg.setBackground(null);
        return cg;
    }
View Full Code Here


        cg.setBackground(null);
        return cg;
    }
   
    public static CompoundGraphic newCompoundGraphic(String name){
        CompoundGraphic gf = new CompoundGraphic(name);
        return gf;
    }
View Full Code Here

   *            The Background colour.
   * @return The created <code>CompoundGraphic</code>
   */
  public static CompoundGraphic newCompoundGraphic(String name, int frameWeight,
      String caption, Color bc) {
    CompoundGraphic gf = newCompoundGraphic(name);
    FrameWeight.set(gf, frameWeight);
    Caption.set(gf, caption);
    gf.setOpaque(true);
    // gf.setLayout(null);
    return gf;
  }
View Full Code Here

   * @param name
   *            Name of the TabFolder
   * @return The created <code>CompoundGraphic</code>
   */
  public static CompoundGraphic newCompoundGraphic(String name) {
    CompoundGraphic gf = new CompoundGraphic(name);

    return gf;
  }
View Full Code Here

public class GraphicFactory {
    private GraphicFactory() {
        super();
    }
    public static CompoundGraphic newCompoundGraphic(){
        CompoundGraphic cg = new CompoundGraphic(null);
        cg.setLayout(null);
        cg.setBackground(null);
        return cg;
    }
View Full Code Here

        cg.setBackground(null);
        return cg;
    }
   
    public static CompoundGraphic newCompoundGraphic(String name){
        CompoundGraphic gf = new CompoundGraphic(name);
        return gf;
    }
View Full Code Here

   *            The Background colour.
   * @return The created <code>CompoundGraphic</code>
   */
  public static CompoundGraphic newCompoundGraphic(String name, int frameWeight,
      String caption, Color bc) {
    CompoundGraphic gf = newCompoundGraphic(name);
    FrameWeight.set(gf, frameWeight);
    Caption.set(gf, caption);
    gf.setOpaque(true);
    // gf.setLayout(null);
    return gf;
  }
View Full Code Here

   * @param name
   *            Name of the TabFolder
   * @return The created <code>CompoundGraphic</code>
   */
  public static CompoundGraphic newCompoundGraphic(String name) {
    CompoundGraphic gf = new CompoundGraphic(name);

    return gf;
  }
View Full Code Here

TOP

Related Classes of DisplayProject.controls.CompoundGraphic

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.