コード例 #1
0
ファイル: MGoal.java プロジェクト: WilkerDiaz/Compiere
 /**
  * Get the color schema for this goal.
  *
  * @return the color schema, or null if the measure targer is 0
  */
 public MColorSchema getColorSchema() {
   return (getMeasureTarget().signum() == 0)
       ? null
       : MColorSchema.get(getCtx(), getPA_ColorSchema_ID());
 }
コード例 #2
0
ファイル: MGoal.java プロジェクト: metasfresh/metasfresh
 /**
  * Get the color schema for this goal.
  *
  * @return the color schema
  */
 public MColorSchema getColorSchema() {
   return MColorSchema.get(getCtx(), getPA_ColorSchema_ID());
 }