Pages

07 September, 2012

Easy way to get the option values in JAVA from a feature configuration (Oracle CC&B)

The easiest way to get the option values in JAVA from a feature configuration...



Iterator<FeatureConfigurationOptionData> iter= featureOptions.getFeatureConfigurationOptions(null, option , feature).iterator();



while(iter.hasNext()){
iter.next();...

    }




No comments:

Post a Comment