package cheddar.core; public class CheddarObject { String cheddarXmlId; public void initializeExplicitAttributes() { cheddarXmlId = ""; } protected String attributesXmlString() { return "" + cheddarXmlId() + ""; } public String cheddarXmlId() { return cheddarXmlId; } }