1 package com.thaiopensource.relaxng.impl; 2 3 class InconsistentDataDerivType extends DataDerivType { 4 static private final InconsistentDataDerivType instance = new InconsistentDataDerivType(); 5 6 static InconsistentDataDerivType getInstance() { 7 return instance; 8 } 9 10 private InconsistentDataDerivType() { } 11 12 DataDerivType combine(DataDerivType ddt) { 13 return this; 14 } 15 16 DataDerivType copy() { 17 return this; 18 } 19 } 20 | Popular Tags |