org.eclipse.ui.forms.AbstractFormPart Java Examples

The following examples show how to use org.eclipse.ui.forms.AbstractFormPart. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HeaderPage.java    From uima-uimaj with Apache License 2.0 5 votes vote down vote up
/**
 * Mark stale.
 */
public void markStale() {
  if (getManagedForm() != null) {
    IFormPart[] parts = getManagedForm().getParts();
    for (int i = 0; i < parts.length; i++) {
      ((AbstractFormPart) parts[i]).markStale();
    }
  }
}
 
Example #2
Source File: DirtyMarkingListener.java    From tlaplus with MIT License 4 votes vote down vote up
public DirtyMarkingListener(AbstractFormPart part, boolean ignoreInputChange)
{
    this.part = part;
    this.ignoreInputChange = ignoreInputChange;
}
 
Example #3
Source File: AbstractSection.java    From uima-uimaj with Apache License 2.0 2 votes vote down vote up
/**
 * Mark stale.
 *
 * @param section the section
 */
public void markStale(IFormPart section) {
  if (section != null)
    ((AbstractFormPart) section).markStale();
}