diff options
author | Jeremias Maerki <jeremias@apache.org> | 2009-10-23 12:22:58 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2009-10-23 12:22:58 +0000 |
commit | 9c7a867efc15bd1bf181bd747ae4567598ba14d0 (patch) | |
tree | fc5407eb820161e69443b6b8d172d248d94297df /src/java/org/apache/fop | |
parent | 71273824decea72e342e0f138d324a39115c6bd5 (diff) | |
download | xmlgraphics-fop-9c7a867efc15bd1bf181bd747ae4567598ba14d0.tar.gz xmlgraphics-fop-9c7a867efc15bd1bf181bd747ae4567598ba14d0.zip |
Added missing license headers.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@829021 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop')
3 files changed, 62 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/afp/modca/triplets/AttributeQualifierTriplet.java b/src/java/org/apache/fop/afp/modca/triplets/AttributeQualifierTriplet.java index e07ac0adb..2f924d585 100644 --- a/src/java/org/apache/fop/afp/modca/triplets/AttributeQualifierTriplet.java +++ b/src/java/org/apache/fop/afp/modca/triplets/AttributeQualifierTriplet.java @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* $Id$ */ + package org.apache.fop.afp.modca.triplets; import java.io.IOException; @@ -16,7 +35,7 @@ public class AttributeQualifierTriplet extends AbstractTriplet { /** * Main constructor - * + * * @param seqNumber the attribute qualifier sequence number * @param levNumber the attribute qualifier level number */ @@ -40,7 +59,7 @@ public class AttributeQualifierTriplet extends AbstractTriplet { public int getDataLength() { return 10; } - + /** {@inheritDoc} */ public String toString() { return "seqNumber=" + seqNumber + ", levNumber=" + levNumber; diff --git a/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java b/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java index 1924b05f2..ec2ae8d7c 100644 --- a/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java +++ b/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* $Id$ */ + package org.apache.fop.afp.modca.triplets; import java.io.IOException; @@ -15,7 +34,7 @@ public class AttributeValueTriplet extends AbstractTriplet { /** * Main constructor - * + * * @param attVal an attribute value */ public AttributeValueTriplet(String attVal) { @@ -45,7 +64,7 @@ public class AttributeValueTriplet extends AbstractTriplet { public int getDataLength() { return 4 + attVal.length(); } - + /** {@inheritDoc} */ public String toString() { return attVal; diff --git a/src/java/org/apache/fop/afp/modca/triplets/Triplet.java b/src/java/org/apache/fop/afp/modca/triplets/Triplet.java index 4b061aeb0..726727e3e 100644 --- a/src/java/org/apache/fop/afp/modca/triplets/Triplet.java +++ b/src/java/org/apache/fop/afp/modca/triplets/Triplet.java @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* $Id$ */ + package org.apache.fop.afp.modca.triplets; import org.apache.fop.afp.Streamable; @@ -5,7 +24,7 @@ import org.apache.fop.afp.StructuredData; public interface Triplet extends Streamable, StructuredData { int MAX_LENGTH = 254; - + byte CODED_GRAPHIC_CHARACTER_SET_GLOBAL_IDENTIFIER = 0x01; /** Triplet identifiers */ |