Package ch.pterrettaz.jmess.core

Examples of ch.pterrettaz.jmess.core.ClassData


        while (names.hasMoreElements()) {
          String value = props.getProperty((String) names.nextElement());
          Matcher m = classPattern.matcher(value);
          if (m.matches()) {
            int dot = value.lastIndexOf('.');
            results.add(new ClassData(value.substring(0, dot), value.substring(dot + 1), location));
          }
        }
      }
    });
View Full Code Here


                }

            }
        });

        return Collections.singleton(new ClassData(packageName.get(), className.get(), location));
    }
View Full Code Here

TOP

Related Classes of ch.pterrettaz.jmess.core.ClassData

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.