1 package spoon.support.builder;2 3 public interface CtResource {4 5 CtFolder getParent();6 7 String getName();8 9 boolean isFile();10 }11