1 16 package org.apache.commons.collections.set; 17 18 import java.util.Set ; 19 20 import org.apache.commons.collections.collection.AbstractCollectionDecorator; 21 22 32 public abstract class AbstractSetDecorator extends AbstractCollectionDecorator implements Set { 33 34 38 protected AbstractSetDecorator() { 39 super(); 40 } 41 42 48 protected AbstractSetDecorator(Set set) { 49 super(set); 50 } 51 52 57 protected Set getSet() { 58 return (Set ) getCollection(); 59 } 60 61 } 62 | Popular Tags |