diff options
author | Nick Burch <nick@apache.org> | 2010-05-24 14:00:48 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2010-05-24 14:00:48 +0000 |
commit | e8737642541a4d31f784e6bb29980baa80784cfc (patch) | |
tree | b8c6accc93eb707e950bb7973dbfce0062a1de8d /src/java/org/apache/poi/ss/format | |
parent | 9f0cd544cf702c31cbcbc0ea944a22b38784f213 (diff) | |
download | poi-e8737642541a4d31f784e6bb29980baa80784cfc.tar.gz poi-e8737642541a4d31f784e6bb29980baa80784cfc.zip |
Add in missing license headers to a few files
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@947644 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/format')
-rw-r--r-- | src/java/org/apache/poi/ss/format/CellFormatType.java | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/ss/format/CellFormatType.java b/src/java/org/apache/poi/ss/format/CellFormatType.java index 363af1c483..e1f436bdc8 100644 --- a/src/java/org/apache/poi/ss/format/CellFormatType.java +++ b/src/java/org/apache/poi/ss/format/CellFormatType.java @@ -1,3 +1,20 @@ +/* ==================================================================== + 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. +==================================================================== */ + package org.apache.poi.ss.format; /** @@ -71,4 +88,4 @@ public enum CellFormatType { * @return A new formatter of the appropriate type, for the given pattern. */ abstract CellFormatter formatter(String pattern); -}
\ No newline at end of file +} |