Пример #1
0
 @Override
 public synchronized ControllerType getControllerType(String signature) {
   if (signature != null) {
     CMethods methods = getMethods(signature);
     if (methods != null) return methods.createType();
   }
   return null;
 }
Пример #2
0
 private void addMethods(CMethods methods) {
   signature2methods_.put(methods.getSignature(), methods);
 }