Searched defs:_throws (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJMethod.java67 private Set<JClass> _throws; field in class:JMethod
139 if(_throws==null)
140 _throws = new TreeSet<JClass>(ClassNameComparator.theInstance);
141 return _throws;
151 public JMethod _throws(JClass exception) { method in class:JMethod
156 public JMethod _throws(Class<? extends Throwable> exception) { method in class:JMethod
157 return _throws(outer.owner().ref(exception));
436 if (_throws!=null && !_throws.isEmpty()) {
437 f.nl().i().p("throws").g(_throws)
[all...]

Completed in 384 milliseconds