Beispiel #1
0
 public Extension copy() {
   Extension dst = new Extension();
   copyValues(dst);
   dst.url = url == null ? null : url.copy();
   dst.value = value == null ? null : value.copy();
   return dst;
 }
Beispiel #2
0
 public boolean isEmpty() {
   return super.isEmpty() && (url == null || url.isEmpty()) && (value == null || value.isEmpty());
 }