Home
last modified time | relevance | path

Searched refs:getMethodDeltas (Results 1 – 4 of 4) sorted by relevance

/cts/tools/signature-tools/test/signature/comparator/
DMethodCompareTests.java65 assertEquals(1, classDelta.getMethodDeltas().size()); in compareMissingMethod()
66 assertEquals(DeltaType.REMOVED, classDelta.getMethodDeltas().iterator().next().getType()); in compareMissingMethod()
85 assertEquals(1, classDelta.getMethodDeltas().size()); in compareAddedMethod()
86 assertEquals(DeltaType.ADDED, classDelta.getMethodDeltas().iterator().next().getType()); in compareAddedMethod()
106 assertEquals(1, classDelta.getMethodDeltas().size()); in compareChangedMethod()
107 assertEquals(DeltaType.CHANGED, classDelta.getMethodDeltas().iterator().next().getType()); in compareChangedMethod()
127 assertEquals(2, classDelta.getMethodDeltas().size()); //one added , one removed in compareAddedParameterMethod()
/cts/tools/signature-tools/src/signature/io/html/
DClassOverviewPage.java91 if (classDelta.getMethodDeltas() != null) { in prepareData()
154 .getRemoved(classDelta.getMethodDeltas())); in prepareMethodDeltas()
158 .getMethodDeltas())); in prepareMethodDeltas()
162 .getChanged(classDelta.getMethodDeltas())); in prepareMethodDeltas()
/cts/tools/signature-tools/src/signature/compare/model/
DIClassDefinitionDelta.java60 Set<IMethodDelta> getMethodDeltas(); in getMethodDeltas() method
/cts/tools/signature-tools/src/signature/compare/model/impl/
DSigClassDefinitionDelta.java96 public Set<IMethodDelta> getMethodDeltas() { in getMethodDeltas() method in SigClassDefinitionDelta