import java.util.Map; public class ExposesRep { private String[] strings; private Map stringMap; public ExposesRep() { strings = new String[1]; } public String[] getStrings() { return strings; } // $ Alert public Map getStringMap() { // $ Alert return stringMap; } public void setStrings(String[] ss) { // $ Alert this.strings = ss; } public void setStringMap(Map m) { // $ Alert this.stringMap = m; } } class GenericExposesRep { private T[] array; public T[] getArray() { return array; } // $ Alert }