Package org.cishell.utilities.mutateParameter.dropdown

Examples of org.cishell.utilities.mutateParameter.dropdown.DropdownTransformer


      Collection<DropdownTransformer> transformers,
      Collection<String> attributesToIgnore) {
    ObjectClassDefinition newObjectClassDefinition = objectClassDefinition;
   
    for (Iterator<DropdownTransformer> it = transformers.iterator(); it.hasNext();) {
      DropdownTransformer transformer = it.next();
      newObjectClassDefinition =
        apply(transformer, newObjectClassDefinition, attributesToIgnore);
    }
   
    return newObjectClassDefinition;
View Full Code Here

TOP

Related Classes of org.cishell.utilities.mutateParameter.dropdown.DropdownTransformer

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.