Package org.objectstyle.wolips.eomodeler.core.utils

Examples of org.objectstyle.wolips.eomodeler.core.utils.NotificationMap


  @SuppressWarnings("unchecked")
  public void setInput(IWorkbenchPart _part, ISelection _selection) {
    super.setInput(_part, _selection);
    removeListeners();
    NotificationMap userInfo;
    if (_selection instanceof IStructuredSelection) {
      _userInfoable = (IUserInfoable) ((IStructuredSelection) _selection).getFirstElement();
      userInfo = _userInfoable.getUserInfo();
      if (userInfo == null) {
        userInfo = new NotificationMap();
        _userInfoable.setUserInfo(userInfo);
      }
      userInfo.addPropertyChangeListener(this);
    } else {
      _userInfoable = null;
      userInfo = null;
    }
    _propertyListEditor.setInput(userInfo);
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.eomodeler.core.utils.NotificationMap

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.