01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04:
05: package com.tc.aspectwerkz.definition.deployer;
06:
07: /**
08: * TODO document class
09: *
10: * @author Jonas Bonér
11: */
12: public interface DefinitionBuilder {
13: void build();
14: }
|