HomeSort by relevance Sort by last modified time
    Searched refs:currentRawValue (Results 1 - 3 of 3) sorted by null

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
ListReplacementChange.java 28 Object currentRawValue = new NoChange().getValue(property, node);
29 if (currentRawValue instanceof Optional) {
30 Optional optional = (Optional)currentRawValue;
31 currentRawValue = optional.orElseGet(null);
33 if (!(currentRawValue instanceof NodeList)){
34 throw new IllegalStateException("Expected NodeList, found " + currentRawValue.getClass().getCanonicalName());
36 NodeList currentNodeList = (NodeList)currentRawValue;
ListRemovalChange.java 23 Object currentRawValue = new NoChange().getValue(property, node);
24 if (!(currentRawValue instanceof NodeList)){
25 throw new IllegalStateException("Expected NodeList, found " + currentRawValue.getClass().getCanonicalName());
27 NodeList<?> currentNodeList = (NodeList<?>)currentRawValue;
ListAdditionChange.java 25 Object currentRawValue = new NoChange().getValue(property, node);
26 if (!(currentRawValue instanceof NodeList)){
27 throw new IllegalStateException("Expected NodeList, found " + currentRawValue.getClass().getCanonicalName());
29 NodeList<?> currentNodeList = (NodeList<?>)(currentRawValue);

Completed in 3587 milliseconds