copyright: update license
[fedora-idea.git] / plugins / Copyright / src / com / maddyhome / idea / copyright / CopyrightProfile.java
blob8f18a85f4fd8db0d7983bc5caadffe426c2d7714
1 /*
2 * Copyright 2000-2007 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package com.maddyhome.idea.copyright;
19 import com.intellij.profile.ProfileEx;
20 import com.maddyhome.idea.copyright.util.EntityUtil;
22 public class CopyrightProfile extends ProfileEx {
23 public static final String DEFAULT_COPYRIGHT_NOTICE =
24 EntityUtil.encode("Copyright (c) $today.year, Your Corporation. All Rights Reserved.");
26 public String notice = DEFAULT_COPYRIGHT_NOTICE;
27 public String keyword = EntityUtil.encode("Copyright");
29 //read external
30 public CopyrightProfile() {
31 super("");
34 public CopyrightProfile(String profileName) {
35 super(profileName);
38 public String getNotice() {
39 return notice;
42 public String getKeyword() {
43 return keyword;
46 public void setNotice(String text) {
47 notice = text;
50 public void setKeyword(String keyword) {
51 this.keyword = keyword;