Exemplo n.º 1
0
 /**
  * Resets all member variables within this object recursively
  *
  * <p>Note: Manually written
  */
 public final void initDefault() {
   // setBackground( ColorDefinitionImpl.WHITE( ) );
   final LineAttributes lia =
       LineAttributesImpl.createDefault(null, LineStyle.SOLID_LITERAL, 0, false);
   setOutline(lia);
   setInsets(InsetsImpl.createDefault(0, 0, 0, 0));
 }
Exemplo n.º 2
0
  /**
   * Initializes all member variables within this object recursively
   *
   * <p>Note: Manually written
   */
  protected void initDefault() // SUBCLASSED BY ScatterSeriesImpl
      {
    super.initDefault();

    final LineAttributes lia =
        LineAttributesImpl.createDefault(null, LineStyle.SOLID_LITERAL, 1, true);
    setLineAttributes(lia);
    labelPosition = Position.ABOVE_LITERAL;

    final Marker m = MarkerImpl.createDefault(MarkerType.BOX_LITERAL, 4, true);
    LineAttributes la = LineAttributesImpl.createDefault(true);
    m.setOutline(la);
    getMarkers().add(m);

    paletteLineColor = true;
  }
Exemplo n.º 3
0
 /**
  * Resets all member variables within this object recursively
  *
  * <p>Note: Manually written
  */
 public final void initialize() {
   // setBackground( ColorDefinitionImpl.WHITE( ) );
   final LineAttributes lia =
       LineAttributesImpl.create(ColorDefinitionImpl.BLACK(), LineStyle.SOLID_LITERAL, 0);
   lia.setVisible(false);
   setOutline(lia);
   setInsets(InsetsImpl.create(0, 0, 0, 0));
 }
Exemplo n.º 4
0
  protected final void initialize() {
    // Outline
    LineAttributes lia =
        LineAttributesImpl.create(ColorDefinitionImpl.BLACK(), LineStyle.SOLID_LITERAL, 1);
    setLineAttributes(lia);

    // Label
    Label lb = LabelImpl.create();
    setLabel(lb);

    // MAJOR GRID
    Grid gr = ComponentFactory.eINSTANCE.createGrid();
    lia =
        LineAttributesImpl.create(
            ColorDefinitionImpl.create(196, 196, 196), LineStyle.SOLID_LITERAL, 1);
    lia.setVisible(true);
    gr.setLineAttributes(lia);
    lia =
        LineAttributesImpl.create(
            ColorDefinitionImpl.create(196, 196, 196), LineStyle.SOLID_LITERAL, 1);
    gr.setTickAttributes(lia);
    gr.setTickStyle(TickStyle.BELOW_LITERAL);
    setMajorGrid(gr);

    // MINOR GRID
    gr = ComponentFactory.eINSTANCE.createGrid();
    lia =
        LineAttributesImpl.create(
            ColorDefinitionImpl.create(225, 225, 225), LineStyle.SOLID_LITERAL, 1);
    lia.setVisible(false);
    gr.setLineAttributes(lia);
    lia =
        LineAttributesImpl.create(
            ColorDefinitionImpl.create(225, 225, 225), LineStyle.SOLID_LITERAL, 1);
    lia.setVisible(false);
    gr.setTickAttributes(lia);
    gr.setTickStyle(TickStyle.BELOW_LITERAL);
    setMinorGrid(gr);

    // SCALE
    Scale sc = ComponentFactory.eINSTANCE.createScale();
    sc.setMinorGridsPerUnit(5);
    setScale(sc);
  }
Exemplo n.º 5
0
  /**
   * Initializes all member variables within this object recursively
   *
   * <p>Note: Manually written
   */
  protected void initialize() // SUBCLASSED BY ScatterSeriesImpl
      {
    super.initialize();

    final LineAttributes lia = AttributeFactory.eINSTANCE.createLineAttributes();
    ((LineAttributesImpl) lia).set(ColorDefinitionImpl.BLACK(), LineStyle.SOLID_LITERAL, 1);
    lia.setVisible(true);
    setLineAttributes(lia);
    setLabelPosition(Position.ABOVE_LITERAL);

    final Marker m = AttributeFactory.eINSTANCE.createMarker();
    m.setType(MarkerType.BOX_LITERAL);
    m.setSize(4);
    m.setVisible(true);
    LineAttributes la = AttributeFactory.eINSTANCE.createLineAttributes();
    la.setVisible(true);
    m.setOutline(la);
    getMarkers().add(m);
    setPaletteLineColor(true);
  }