Home
last modified time | relevance | path

Searched refs:getExceptions (Results 1 – 7 of 7) sorted by relevance

/cts/tools/signature-tools/src/signature/model/impl/
DSigConstructor.java49 if (getExceptions() != null && !getExceptions().isEmpty()) { in toString()
51 builder.append(ModelUtil.separate(getExceptions(), " ")); in toString()
DSigMethod.java68 if (method.getExceptions() != null in toString()
69 && !method.getExceptions().isEmpty()) { in toString()
71 builder.append(ModelUtil.separate(method.getExceptions(), " ")); in toString()
DSigExecutableMember.java58 public Set<ITypeReference> getExceptions() { in getExceptions() method in SigExecutableMember
/cts/tools/signature-tools/src/signature/compare/model/subst/
DExecutableMemberProjection.java51 public Set<ITypeReference> getExceptions() { in getExceptions() method in ExecutableMemberProjection
53 .getExceptions(), mappings); in getExceptions()
/cts/tools/signature-tools/src/signature/model/
DIExecutableMember.java48 Set<ITypeReference> getExceptions(); in getExceptions() method
/cts/tools/signature-tools/src/signature/compare/
DApiComparator.java712 normalizeExceptions(from.getExceptions()),
713 normalizeExceptions(to.getExceptions()));
911 normalizeExceptions(from.getExceptions()),
912 normalizeExceptions(to.getExceptions()));
/cts/tools/signature-tools/test/signature/converter/
DConvertClassTest.java412 assertEquals(1, constructor.getExceptions().size()); in convertConstructorWithException()
413 IClassReference exception = (IClassReference) constructor.getExceptions().iterator().next(); in convertConstructorWithException()