172173174175176177178179180181182
{ return getJavaSource().getQualifiedName(); } catch (FileNotFoundException e) { throw new ResourceException(e); } catch (Exception e) { return getName(); }
277278279280281282283284285
private void assertPropertiesInContext() { if (propertiesFileResource == null) { throw new ResourceException("No bundle informed or in context"); } }
7576777879808182838485
{ return subset.get(0); } else if (subset.size() > 1) { throw new ResourceException("Ambiguous name [" + name + "], full type signature required"); } else { return null; }
156157158159160161162163164165166