Package org.eclipse.wb.core.gef.policy

Examples of org.eclipse.wb.core.gef.policy.DirectTextPropertyEditPolicy


  protected void refreshEditPolicies() {
    super.refreshEditPolicies();
    // install direct text edit policy for "header" property
    {
      Property headerProperty = m_column.getHeaderProperty();
      DirectTextPropertyEditPolicy policy;
      if (headerProperty != null) {
        policy = new DirectTextPropertyEditPolicy(m_column, headerProperty);
      } else {
        policy = null;
      }
      installEditPolicy(DirectTextPropertyEditPolicy.KEY, policy);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.core.gef.policy.DirectTextPropertyEditPolicy

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.