Package net.sf.minuteProject.configuration.bean.enrichment

Examples of net.sf.minuteProject.configuration.bean.enrichment.Stereotype


public class PlayUtils {

  public boolean hasStereotype (Column column) {
    if (column!=null) {
      Stereotype stereotype = column.getStereotype();
      if (isPlayStereotype(stereotype))
        return true;
    }
    return false;
  }
View Full Code Here


    }
    return false;
  }

  public String getStereotype(Column column) {
    Stereotype stereotype = column.getStereotype();
    if (isPlayStereotype(stereotype)) {
      return getStereotype(stereotype.getStereotype());
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.enrichment.Stereotype

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.