Package org.eclipse.jst.pagedesigner.dtmanager.dtinfo

Examples of org.eclipse.jst.pagedesigner.dtmanager.dtinfo.TagConvertInfo


     * @return the notification chaing
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetTagConvertInfo(TagConvertInfo newTagConvertInfo, NotificationChain msgs) {
    TagConvertInfo oldTagConvertInfo = tagConvertInfo;
    tagConvertInfo = newTagConvertInfo;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DTInfoPackage.DT_INFO__TAG_CONVERT_INFO, oldTagConvertInfo, newTagConvertInfo);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here


  protected ITransformer createTransformerFromDTInfo(Element element) {
    ITransformer transformer = null;
    DTManager dtManager = DTManager.getInstance();
    IDTInfo dtInfo = dtManager.getDTInfo(element);
    if (dtInfo != null) {
      TagConvertInfo tcInfo = dtInfo.getTagConvertInfo();
      if (tcInfo != null) {
        transformer = new DefaultTransformer(tagConverterContext);
        EList operations = tcInfo.getOperations();
        if (!appendOperationsToTransformer(transformer, operations, dtInfo)) {
          transformer = null;
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.pagedesigner.dtmanager.dtinfo.TagConvertInfo

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.