Example #1
0
  public void setLabelFor(Component c) {
    activeComponent = (JComponent) c;
    if (c instanceof ActiveControl) {
      ActiveControl ac = (ActiveControl) c;
      activeProperty = ac.getControlProperty();
      String acCaption = activeProperty.getCaption();
      if (forceUseActiveCaption
          || (!ValueUtil.isEmpty(acCaption) && !acCaption.equals("Caption"))) {
        setName(null);
        setExpression(null);
        formatText(activeProperty.getCaption(), activeProperty.isRequired());
        super.setDisplayedMnemonic(activeProperty.getCaptionMnemonic());
      }

      activeControlSupport = new ActiveControlSupport();
      activeProperty.addPropertyChangeListener(activeControlSupport);
    }
    super.setLabelFor(c);
  }
Example #2
0
 public void setAddCaptionColon(boolean addCaptionColon) {
   this.addCaptionColon = addCaptionColon;
   formatText(activeProperty.getCaption(), activeProperty.isRequired());
 }
Example #3
0
 public void setCellPadding(Insets padding) {
   property.setCellPadding(padding);
 }
Example #4
0
 public void setCaptionFont(Font f) {
   property.setCaptionFont(f);
 }
Example #5
0
 public Insets getCellPadding() {
   return property.getCellPadding();
 }
Example #6
0
 public void setCaptionWidth(int width) {
   property.setCaptionWidth(width);
 }
Example #7
0
 public Font getCaptionFont() {
   return property.getCaptionFont();
 }
Example #8
0
 public void setCaptionMnemonic(char c) {
   property.setCaptionMnemonic(c);
 }
Example #9
0
 public int getCaptionWidth() {
   return property.getCaptionWidth();
 }
Example #10
0
 public char getCaptionMnemonic() {
   return property.getCaptionMnemonic();
 }
Example #11
0
 public void setShowCaption(boolean show) {
   property.setShowCaption(show);
 }
Example #12
0
 public boolean isShowCaption() {
   return property.isShowCaption();
 }
Example #13
0
 public void setCaption(String caption) {
   property.setCaption(caption);
 }
Example #14
0
 public String getCaption() {
   return property.getCaption();
 }