Package org.eclipse.wb.internal.core.databinding.model.presentation

Examples of org.eclipse.wb.internal.core.databinding.model.presentation.JavaInfoObservePresentation


  public WidgetObserveInfo(JavaInfo javaInfo,
      WidgetObserveInfo parent,
      PropertiesSupport propertiesSupport) throws Exception {
    this(javaInfo.getDescription().getComponentClass(),
        new JavaInfoReferenceProvider(javaInfo),
        new JavaInfoObservePresentation(javaInfo),
        parent,
        propertiesSupport);
    m_javaInfo = javaInfo;
    // prepare children
    List<JavaInfo> childrenInfos = SynchronizeManager.getChildren(m_javaInfo, JavaInfo.class);
View Full Code Here


  //
  ////////////////////////////////////////////////////////////////////////////
  public BindingsWidgetObserveInfo(PropertiesSupport propertiesSupport) throws Exception {
    super(propertiesSupport.getClass(),
        StringReferenceProvider.EMPTY,
        new JavaInfoObservePresentation(null) {
          @Override
          public String getText() throws Exception {
            return "Bindings";
          }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.databinding.model.presentation.JavaInfoObservePresentation

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.