01: /*
02: * Copyright 2006-2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.kuali.core.datadictionary;
18:
19: import org.apache.commons.logging.Log;
20: import org.apache.commons.logging.LogFactory;
21:
22: /**
23: * Contains section-related information relating to the parent MaintainableDocument.
24: *
25: * Note: the setters do copious amounts of validation, to facilitate generating errors during the parsing process.
26: *
27: *
28: */
29: public class MaintainableSubSectionHeaderDefinition extends
30: MaintainableItemDefinition implements
31: SubSectionHeaderDefinitionI {
32: // logger
33: private static Log LOG = LogFactory
34: .getLog(MaintainableSubSectionHeaderDefinition.class);
35:
36: public MaintainableSubSectionHeaderDefinition() {
37: }
38:
39: /**
40: * Directly validate simple fields.
41: *
42: * @see org.kuali.core.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class, java.lang.Object)
43: */
44: public void completeValidation(Class rootBusinessObjectClass,
45: Class otherBusinessObjectClass,
46: ValidationCompletionUtils util) {
47: //do nothing ?
48: }
49:
50: public String toString() {
51: return "MaintainableSubSectionHeaderDefinition '" + getName()
52: + "'";
53: }
54: }
|