ProcessUtils.java revision 3
/*
* Created on May 3, 2005
*/
/**
* @author Evren Sirin
*
*/
public class ProcessUtils {
/**
* Returns a map from inputs to a set of values which
* show the allowed values for that input that are found in the KB. Only the KB that the
* process belongs to is searched (there might be other allowed values that are not in the KB).
*
* @param process
* @return
*/
}
/**
* Given a partial input binding, returns a map from inputs to a set of values which
* show the allowed values for that input that are found in the KB. Only the KB that the
* process belongs to is searched (there might be other allowed values that are not in the KB).
* There is no entry in the map for the inputs
* that are already bound in the given binding.
*
* @param process
* @param initialBinding
* @return
*/
}
/**
* Given a partial input binding, returns a map from inputs to a set of values which
* show the allowed values for that input that are found in the KB (there might be other
* allowed values that are not in the KB). There is no entry in the map for the inputs
* that are already bound in the given binding.
*
* @param kb
* @param process
* @param initialBinding
* @return
*/
"getAllowedValues does not support for multiple conditions, " +
"checking the first condition only!" );
if( conditions.isEmpty() ) {
}
else {
}
}
}
}
}
}
}
return allowedValues;
}
}