diff --git a/RegExpSupport/src/org/intellij/lang/regexp/RegExpBraceMatcher.java b/RegExpSupport/src/org/intellij/lang/regexp/RegExpBraceMatcher.java index 5c9164f2ebba..e51b63fa22ff 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/RegExpBraceMatcher.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/RegExpBraceMatcher.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.regexp; import com.intellij.lang.BracePair; diff --git a/RegExpSupport/src/org/intellij/lang/regexp/RegExpCompletionContributor.java b/RegExpSupport/src/org/intellij/lang/regexp/RegExpCompletionContributor.java index 0eccbc7bc957..4e7f6929b5bf 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/RegExpCompletionContributor.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/RegExpCompletionContributor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.regexp; import com.intellij.codeInsight.TailType; diff --git a/RegExpSupport/src/org/intellij/lang/regexp/RegExpDocumentationProvider.java b/RegExpSupport/src/org/intellij/lang/regexp/RegExpDocumentationProvider.java index 9dc76ae30500..1106b4805b08 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/RegExpDocumentationProvider.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/RegExpDocumentationProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.regexp; import com.intellij.lang.ASTNode; diff --git a/RegExpSupport/src/org/intellij/lang/regexp/RegExpLanguageHost.java b/RegExpSupport/src/org/intellij/lang/regexp/RegExpLanguageHost.java index 409c9700f1c8..f1d344564c22 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/RegExpLanguageHost.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/RegExpLanguageHost.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.regexp; /** diff --git a/RegExpSupport/src/org/intellij/lang/regexp/RegExpSyntaxHighlighterFactory.java b/RegExpSupport/src/org/intellij/lang/regexp/RegExpSyntaxHighlighterFactory.java index e064bfd4b715..3353290ac13f 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/RegExpSyntaxHighlighterFactory.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/RegExpSyntaxHighlighterFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.regexp; import com.intellij.lang.LanguageParserDefinitions; diff --git a/RegExpSupport/src/org/intellij/lang/regexp/_RegExLexer.java b/RegExpSupport/src/org/intellij/lang/regexp/_RegExLexer.java index 908f634854cf..b789ad5a697e 100644 --- a/RegExpSupport/src/org/intellij/lang/regexp/_RegExLexer.java +++ b/RegExpSupport/src/org/intellij/lang/regexp/_RegExLexer.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* The following code was generated by JFlex 1.4.1 on 23.09.09 18:11 */ /* It's an automatically generated code. Do not modify it. */ diff --git a/RegExpSupport/test/test/RegExpCompletionTest.java b/RegExpSupport/test/test/RegExpCompletionTest.java index 5380d545ee0c..d0b0a2e2c7e1 100644 --- a/RegExpSupport/test/test/RegExpCompletionTest.java +++ b/RegExpSupport/test/test/RegExpCompletionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 test; import com.intellij.openapi.application.PathManager; diff --git a/plugins/testng/src/com/theoryinpractice/testng/MessageInfoException.java b/plugins/testng/src/com/theoryinpractice/testng/MessageInfoException.java index 611a6f99e8a8..fa8339bef66d 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/MessageInfoException.java +++ b/plugins/testng/src/com/theoryinpractice/testng/MessageInfoException.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng; import com.intellij.openapi.ui.ex.MessagesEx; diff --git a/plugins/testng/src/com/theoryinpractice/testng/TestNGFrameworkDescriptor.java b/plugins/testng/src/com/theoryinpractice/testng/TestNGFrameworkDescriptor.java index ba7978841d6c..16653fdd3420 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/TestNGFrameworkDescriptor.java +++ b/plugins/testng/src/com/theoryinpractice/testng/TestNGFrameworkDescriptor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng; import com.intellij.testIntegration.JavaTestFrameworkDescriptor; diff --git a/plugins/testng/src/com/theoryinpractice/testng/TestNGPlugin.java b/plugins/testng/src/com/theoryinpractice/testng/TestNGPlugin.java index 93cc3b3bc42e..ea17fbd35778 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/TestNGPlugin.java +++ b/plugins/testng/src/com/theoryinpractice/testng/TestNGPlugin.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 30-Jul-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/TestNGReferenceContributor.java b/plugins/testng/src/com/theoryinpractice/testng/TestNGReferenceContributor.java index 98aad3af8797..4a63ce22c848 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/TestNGReferenceContributor.java +++ b/plugins/testng/src/com/theoryinpractice/testng/TestNGReferenceContributor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfiguration.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfiguration.java index f54468259886..a316da7e6111 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfiguration.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationEditor.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationEditor.java index b1a2eda92add..87910bbf7cc6 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationEditor.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationEditor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationProducer.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationProducer.java index 4d2671646d42..d9283765c6c4 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationProducer.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationProducer.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 15-Aug-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationType.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationType.java index 5a8501db0245..35edd0a90287 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationType.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGConfigurationType.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGInClassConfigurationProducer.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGInClassConfigurationProducer.java index 20a127c88424..4870909fd2c9 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGInClassConfigurationProducer.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGInClassConfigurationProducer.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 23-May-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGPackageConfigurationProducer.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGPackageConfigurationProducer.java index 2619a57ce77e..44334d190bfb 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGPackageConfigurationProducer.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGPackageConfigurationProducer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration; import com.intellij.execution.Location; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGRunnableState.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGRunnableState.java index 585ce668b5e0..73c57bb33f49 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGRunnableState.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGRunnableState.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGSuiteConfigurationProducer.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGSuiteConfigurationProducer.java index 390f7abc7a57..7edeeffb3c22 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGSuiteConfigurationProducer.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/TestNGSuiteConfigurationProducer.java @@ -1,17 +1,17 @@ /* * Copyright 2000-2009 JetBrains s.r.o. * - * Licensed 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 + * Licensed 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 + * 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. + * 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. */ /* diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupBrowser.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupBrowser.java index de3ff60bebcd..dcc4940f4df8 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupBrowser.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupBrowser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.execution.configuration.BrowseModuleValueActionListener; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupList.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupList.java index 8bfe71ae04cc..27cc347d4eb2 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupList.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/GroupList.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.openapi.ui.DialogBuilder; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodBrowser.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodBrowser.java index 0b6fd964a960..1dfcb3ea7c37 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodBrowser.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodBrowser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.openapi.ui.Messages; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodList.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodList.java index eab2d4f7f002..02227a4711c7 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodList.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/MethodList.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.ide.structureView.impl.StructureNodeRenderer; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/PackageBrowser.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/PackageBrowser.java index e16466f9cc67..f688fff013bb 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/PackageBrowser.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/PackageBrowser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.psi.PsiPackage; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/SuiteBrowser.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/SuiteBrowser.java index 483a134ae890..1f67fe4586c5 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/SuiteBrowser.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/SuiteBrowser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.openapi.project.Project; diff --git a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/TestClassBrowser.java b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/TestClassBrowser.java index 852b4a6d4d6a..c21985a067cd 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/TestClassBrowser.java +++ b/plugins/testng/src/com/theoryinpractice/testng/configuration/browser/TestClassBrowser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.configuration.browser; import com.intellij.execution.JavaExecutionUtil; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertAnnotationInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertAnnotationInspection.java index cc124bd0a2d9..e9c95136cc5c 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertAnnotationInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertAnnotationInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.inspection; import com.intellij.codeInspection.BaseJavaLocalInspectionTool; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertJavadocInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertJavadocInspection.java index 378d1722c9a8..d1b4eeb67af9 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertJavadocInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertJavadocInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.inspection; import com.intellij.CommonBundle; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspection.java index 4647f4103402..e7f9ea460e8e 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnGroupsInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnGroupsInspection.java index 3fd13fbcff48..985b3c49729e 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnGroupsInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnGroupsInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.inspection; import com.intellij.codeInsight.daemon.HighlightDisplayKey; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnMethodInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnMethodInspection.java index 72b0fe428936..56f3f6227f27 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnMethodInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/DependsOnMethodInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.inspection; import com.intellij.codeInspection.*; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/JUnitConvertTool.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/JUnitConvertTool.java index 3d185530e424..4e561ceda7e5 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/JUnitConvertTool.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/JUnitConvertTool.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.inspection; import com.intellij.codeInsight.actions.OptimizeImportsProcessor; diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGInspectionsToolProvider.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGInspectionsToolProvider.java index 1e0676c8293b..13243dee7648 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGInspectionsToolProvider.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGInspectionsToolProvider.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 18-Jun-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGUnusedCodeExtension.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGUnusedCodeExtension.java index 8ded386e6b0b..b10c1633dd8b 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGUnusedCodeExtension.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/TestNGUnusedCodeExtension.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 14-May-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/inspection/UndeclaredTestInspection.java b/plugins/testng/src/com/theoryinpractice/testng/inspection/UndeclaredTestInspection.java index 2b1fbbf11aae..8df2e132281e 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/inspection/UndeclaredTestInspection.java +++ b/plugins/testng/src/com/theoryinpractice/testng/inspection/UndeclaredTestInspection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 18-Jun-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/intention/OverrideImplementsTestNGAnnotationsHandler.java b/plugins/testng/src/com/theoryinpractice/testng/intention/OverrideImplementsTestNGAnnotationsHandler.java index c8f04997d20b..f8895c2b4de7 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/intention/OverrideImplementsTestNGAnnotationsHandler.java +++ b/plugins/testng/src/com/theoryinpractice/testng/intention/OverrideImplementsTestNGAnnotationsHandler.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 19-Aug-2008 diff --git a/plugins/testng/src/com/theoryinpractice/testng/intention/TestNGOrderEntryFix.java b/plugins/testng/src/com/theoryinpractice/testng/intention/TestNGOrderEntryFix.java index 2a23a25b0ca6..21509f8342b9 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/intention/TestNGOrderEntryFix.java +++ b/plugins/testng/src/com/theoryinpractice/testng/intention/TestNGOrderEntryFix.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 30-Jul-2007 diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/IDEARemoteTestRunnerClient.java b/plugins/testng/src/com/theoryinpractice/testng/model/IDEARemoteTestRunnerClient.java index c89b4a87a479..2cd8ad2fdca0 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/IDEARemoteTestRunnerClient.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/IDEARemoteTestRunnerClient.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.openapi.application.ApplicationManager; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestClassFilter.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestClassFilter.java index eb12f82861a8..8e4ee0fe3739 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestClassFilter.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestClassFilter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.ide.util.TreeClassChooser; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestData.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestData.java index 5c26924ac478..676460624194 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestData.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestData.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.ExternalizablePath; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestListenerFilter.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestListenerFilter.java index 7b88e519038e..91bb724e1e4a 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestListenerFilter.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestListenerFilter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.configurations.ConfigurationUtil; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConfigurationModel.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConfigurationModel.java index 4ad59ad5ca68..baca5950ec25 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConfigurationModel.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConfigurationModel.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.JavaExecutionUtil; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConsoleProperties.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConsoleProperties.java index 64c7fbe7744a..517c2590fb45 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConsoleProperties.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGConsoleProperties.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.testframework.JavaAwareTestConsoleProperties; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGListenersTableModel.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGListenersTableModel.java index 21fafe526922..da14fb0ecd15 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGListenersTableModel.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGListenersTableModel.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGParametersTableModel.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGParametersTableModel.java index e13602fcc9d8..f5c26203cf7f 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGParametersTableModel.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGParametersTableModel.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGRemoteListener.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGRemoteListener.java index 6b4fd4df9d8a..6ef70a440e5c 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGRemoteListener.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGRemoteListener.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGResultsTableModel.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGResultsTableModel.java index 46d404abaada..0815afab7efa 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNGResultsTableModel.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNGResultsTableModel.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestNodeDescriptor.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestNodeDescriptor.java index e17e72bb8b86..e0a06884dbfc 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestNodeDescriptor.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestNodeDescriptor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.ide.util.treeView.NodeDescriptor; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestProxy.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestProxy.java index 299b800d1b2a..38fc364274cb 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestProxy.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestProxy.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.Location; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeBuilder.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeBuilder.java index 545f85e38df3..1da2190b4ff2 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeBuilder.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.testframework.ui.AbstractTestTreeBuilder; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeStructure.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeStructure.java index 867d7716ff7b..ce3aabb9b980 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeStructure.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestTreeStructure.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; import com.intellij.execution.testframework.Filter; diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TestType.java b/plugins/testng/src/com/theoryinpractice/testng/model/TestType.java index 9f75f1178176..05c57398acf4 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TestType.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TestType.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/model/TreeRootNode.java b/plugins/testng/src/com/theoryinpractice/testng/model/TreeRootNode.java index abaf60f77859..c99f9f9120f0 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/model/TreeRootNode.java +++ b/plugins/testng/src/com/theoryinpractice/testng/model/TreeRootNode.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.model; /** diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/Animator.java b/plugins/testng/src/com/theoryinpractice/testng/ui/Animator.java index c53840f55f89..bedb51de01ea 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/Animator.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/Animator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui; import com.intellij.execution.testframework.ui.TestsProgressAnimator; diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/Printable.java b/plugins/testng/src/com/theoryinpractice/testng/ui/Printable.java index a5b7b502d1ea..c0ed272064a3 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/Printable.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/Printable.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui; import com.intellij.execution.ui.ConsoleView; diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/ResultTreeRenderer.java b/plugins/testng/src/com/theoryinpractice/testng/ui/ResultTreeRenderer.java index bbbf2589ec64..af12e1fa477b 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/ResultTreeRenderer.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/ResultTreeRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui; import com.intellij.execution.testframework.PoolOfTestIcons; diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGConsoleView.java b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGConsoleView.java index 28a7660a1778..82c285ea87cc 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGConsoleView.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGConsoleView.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGDiffHyperLink.java b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGDiffHyperLink.java index 8c8dd601bf6b..64d062485654 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGDiffHyperLink.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGDiffHyperLink.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui; import com.intellij.execution.filters.HyperlinkInfo; diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGResults.java b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGResults.java index 455ad6470780..5fafcccf3a19 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGResults.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGResults.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: amrk diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGTestTreeView.java b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGTestTreeView.java index 0b841a5acc32..6c799a1c165c 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGTestTreeView.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/TestNGTestTreeView.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui; import com.intellij.execution.testframework.TestConsoleProperties; diff --git a/plugins/testng/src/com/theoryinpractice/testng/ui/actions/CreatePackageTestAction.java b/plugins/testng/src/com/theoryinpractice/testng/ui/actions/CreatePackageTestAction.java index cad9d70d7e4c..b41939999875 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/ui/actions/CreatePackageTestAction.java +++ b/plugins/testng/src/com/theoryinpractice/testng/ui/actions/CreatePackageTestAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.ui.actions; import com.intellij.execution.RunManager; diff --git a/plugins/testng/src/com/theoryinpractice/testng/util/TestNGUtil.java b/plugins/testng/src/com/theoryinpractice/testng/util/TestNGUtil.java index 2089066e7006..aef188828bbe 100644 --- a/plugins/testng/src/com/theoryinpractice/testng/util/TestNGUtil.java +++ b/plugins/testng/src/com/theoryinpractice/testng/util/TestNGUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.theoryinpractice.testng.util; import com.intellij.codeInsight.AnnotationUtil; diff --git a/plugins/testng/testData/annotation2javadoc/after1.java b/plugins/testng/testData/annotation2javadoc/after1.java index 2b77c1058acf..03fec54e6387 100644 --- a/plugins/testng/testData/annotation2javadoc/after1.java +++ b/plugins/testng/testData/annotation2javadoc/after1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.AfterTest; public class Testt { diff --git a/plugins/testng/testData/annotation2javadoc/after2.java b/plugins/testng/testData/annotation2javadoc/after2.java index 944ef81d35a4..04837df7d927 100644 --- a/plugins/testng/testData/annotation2javadoc/after2.java +++ b/plugins/testng/testData/annotation2javadoc/after2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { /** diff --git a/plugins/testng/testData/annotation2javadoc/after3.java b/plugins/testng/testData/annotation2javadoc/after3.java index 0dde7c3e0f28..d0278f9a5530 100644 --- a/plugins/testng/testData/annotation2javadoc/after3.java +++ b/plugins/testng/testData/annotation2javadoc/after3.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { /** diff --git a/plugins/testng/testData/annotation2javadoc/afterJavadoc.java b/plugins/testng/testData/annotation2javadoc/afterJavadoc.java index 2ddba496b67c..6dce2bad1459 100644 --- a/plugins/testng/testData/annotation2javadoc/afterJavadoc.java +++ b/plugins/testng/testData/annotation2javadoc/afterJavadoc.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public class Testt { /** * @testng.after-test diff --git a/plugins/testng/testData/annotation2javadoc/before1.java b/plugins/testng/testData/annotation2javadoc/before1.java index d61f0eb0a171..2e38ef80f793 100644 --- a/plugins/testng/testData/annotation2javadoc/before1.java +++ b/plugins/testng/testData/annotation2javadoc/before1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.AfterTest; public class Testt { diff --git a/plugins/testng/testData/annotation2javadoc/before2.java b/plugins/testng/testData/annotation2javadoc/before2.java index 0f597bd63c9c..1741ea686c80 100644 --- a/plugins/testng/testData/annotation2javadoc/before2.java +++ b/plugins/testng/testData/annotation2javadoc/before2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { @AfterTest() diff --git a/plugins/testng/testData/annotation2javadoc/before3.java b/plugins/testng/testData/annotation2javadoc/before3.java index d2ffaec5404a..d288cdceeb74 100644 --- a/plugins/testng/testData/annotation2javadoc/before3.java +++ b/plugins/testng/testData/annotation2javadoc/before3.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { @Test(groups="group1") diff --git a/plugins/testng/testData/annotation2javadoc/beforeJavadoc.java b/plugins/testng/testData/annotation2javadoc/beforeJavadoc.java index 8718ebae264e..fd5f5426029f 100644 --- a/plugins/testng/testData/annotation2javadoc/beforeJavadoc.java +++ b/plugins/testng/testData/annotation2javadoc/beforeJavadoc.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { @AfterTest() diff --git a/plugins/testng/testData/configuration/after1.java b/plugins/testng/testData/configuration/after1.java index b82c92cee0a4..d7479be54a7a 100644 --- a/plugins/testng/testData/configuration/after1.java +++ b/plugins/testng/testData/configuration/after1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Configuration; import org.testng.annotations.BeforeSuite; import org.testng.annotations.AfterTest; diff --git a/plugins/testng/testData/configuration/afterConfiguration.java b/plugins/testng/testData/configuration/afterConfiguration.java index 499a2ed8a816..b2416aefad62 100644 --- a/plugins/testng/testData/configuration/afterConfiguration.java +++ b/plugins/testng/testData/configuration/afterConfiguration.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { diff --git a/plugins/testng/testData/configuration/before1.java b/plugins/testng/testData/configuration/before1.java index f18800ad5ec4..038c47b4212c 100644 --- a/plugins/testng/testData/configuration/before1.java +++ b/plugins/testng/testData/configuration/before1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Configuration; public class Testt { @Configuration(beforeSuite = true, afterTest = true) diff --git a/plugins/testng/testData/configuration/beforeConfiguration.java b/plugins/testng/testData/configuration/beforeConfiguration.java index 6e62c0ab0578..9abfa1a16862 100644 --- a/plugins/testng/testData/configuration/beforeConfiguration.java +++ b/plugins/testng/testData/configuration/beforeConfiguration.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Configuration; public class Testt { @Configuration(afterTestClass = true) diff --git a/plugins/testng/testData/inspection/undeclaredTests/commented/src/p/X.java b/plugins/testng/testData/inspection/undeclaredTests/commented/src/p/X.java index d3c1f220dc04..808b623d2fef 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/commented/src/p/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/commented/src/p/X.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/commented1/src/p/X.java b/plugins/testng/testData/inspection/undeclaredTests/commented1/src/p/X.java index d3c1f220dc04..808b623d2fef 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/commented1/src/p/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/commented1/src/p/X.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/declared/src/p/X.java b/plugins/testng/testData/inspection/undeclaredTests/declared/src/p/X.java index d3c1f220dc04..808b623d2fef 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/declared/src/p/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/declared/src/p/X.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/packageDeclared/src/p/pp/X.java b/plugins/testng/testData/inspection/undeclaredTests/packageDeclared/src/p/pp/X.java index acae5e3b1ccd..9f21a674b7bd 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/packageDeclared/src/p/pp/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/packageDeclared/src/p/pp/X.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p.pp; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X.java b/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X.java index acae5e3b1ccd..9f21a674b7bd 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p.pp; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X2.java b/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X2.java index 99caffa7d66c..18e617192834 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X2.java +++ b/plugins/testng/testData/inspection/undeclaredTests/packageNonDeclared/src/p/pp/X2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p.pp; /** * @testng.test diff --git a/plugins/testng/testData/inspection/undeclaredTests/undeclared/src/X.java b/plugins/testng/testData/inspection/undeclaredTests/undeclared/src/X.java index 1ab9eef7b49c..b4fb0ffd1e98 100644 --- a/plugins/testng/testData/inspection/undeclaredTests/undeclared/src/X.java +++ b/plugins/testng/testData/inspection/undeclaredTests/undeclared/src/X.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /** * @testng.test */ diff --git a/plugins/testng/testData/intention/testNGJar/AfterReference.java b/plugins/testng/testData/intention/testNGJar/AfterReference.java index bbabfad0366e..5faf1eee221f 100644 --- a/plugins/testng/testData/intention/testNGJar/AfterReference.java +++ b/plugins/testng/testData/intention/testNGJar/AfterReference.java @@ -1,2 +1,17 @@ @Test +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ class B{} \ No newline at end of file diff --git a/plugins/testng/testData/intention/testNGJar/InsideReference.java b/plugins/testng/testData/intention/testNGJar/InsideReference.java index 49c26218ece0..c4f079db8f59 100644 --- a/plugins/testng/testData/intention/testNGJar/InsideReference.java +++ b/plugins/testng/testData/intention/testNGJar/InsideReference.java @@ -1,2 +1,17 @@ @Test +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ class A {} \ No newline at end of file diff --git a/plugins/testng/testData/javadoc2Annotation/after1.java b/plugins/testng/testData/javadoc2Annotation/after1.java index 019dadcfedc9..d6f72b1e2750 100644 --- a/plugins/testng/testData/javadoc2Annotation/after1.java +++ b/plugins/testng/testData/javadoc2Annotation/after1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.AfterTest; public class Testt { diff --git a/plugins/testng/testData/javadoc2Annotation/after2.java b/plugins/testng/testData/javadoc2Annotation/after2.java index 5c148e87fbd3..1f11e581d7dc 100644 --- a/plugins/testng/testData/javadoc2Annotation/after2.java +++ b/plugins/testng/testData/javadoc2Annotation/after2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Test; public class Testt { diff --git a/plugins/testng/testData/javadoc2Annotation/after3.java b/plugins/testng/testData/javadoc2Annotation/after3.java index 2d40142c5042..766351d698be 100644 --- a/plugins/testng/testData/javadoc2Annotation/after3.java +++ b/plugins/testng/testData/javadoc2Annotation/after3.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Test; @Test(groups = "group1") diff --git a/plugins/testng/testData/javadoc2Annotation/afterJavadoc2Annotation.java b/plugins/testng/testData/javadoc2Annotation/afterJavadoc2Annotation.java index 55ad8e68fd00..8cad965f5a11 100644 --- a/plugins/testng/testData/javadoc2Annotation/afterJavadoc2Annotation.java +++ b/plugins/testng/testData/javadoc2Annotation/afterJavadoc2Annotation.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.*; public class Testt { diff --git a/plugins/testng/testData/javadoc2Annotation/before1.java b/plugins/testng/testData/javadoc2Annotation/before1.java index e56bd941c800..16113bd9d304 100644 --- a/plugins/testng/testData/javadoc2Annotation/before1.java +++ b/plugins/testng/testData/javadoc2Annotation/before1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public class Testt { /** * @testng.before-suite diff --git a/plugins/testng/testData/javadoc2Annotation/before2.java b/plugins/testng/testData/javadoc2Annotation/before2.java index f1678fc07707..eed21e350496 100644 --- a/plugins/testng/testData/javadoc2Annotation/before2.java +++ b/plugins/testng/testData/javadoc2Annotation/before2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public class Testt { /** * @testng.test groups = "group1" diff --git a/plugins/testng/testData/javadoc2Annotation/before3.java b/plugins/testng/testData/javadoc2Annotation/before3.java index 17d1c2828b8e..3e1b2915debb 100644 --- a/plugins/testng/testData/javadoc2Annotation/before3.java +++ b/plugins/testng/testData/javadoc2Annotation/before3.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /** * @testng.test groups = "group1" */ diff --git a/plugins/testng/testData/javadoc2Annotation/beforeJavadoc2Annotation.java b/plugins/testng/testData/javadoc2Annotation/beforeJavadoc2Annotation.java index 00f0035cdc6f..92c96f05c142 100644 --- a/plugins/testng/testData/javadoc2Annotation/beforeJavadoc2Annotation.java +++ b/plugins/testng/testData/javadoc2Annotation/beforeJavadoc2Annotation.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public class Testt { /** * @testng.after-test diff --git a/plugins/testng/testData/junit/afterClass.java b/plugins/testng/testData/junit/afterClass.java index 91b697f6283d..a1f94680a1db 100644 --- a/plugins/testng/testData/junit/afterClass.java +++ b/plugins/testng/testData/junit/afterClass.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.annotations.Test; public class Testt { diff --git a/plugins/testng/testData/junit/afterFail.java b/plugins/testng/testData/junit/afterFail.java index f4100b8a7b8f..0ddecddba9ca 100644 --- a/plugins/testng/testData/junit/afterFail.java +++ b/plugins/testng/testData/junit/afterFail.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import org.testng.Assert; import org.testng.annotations.Test; diff --git a/plugins/testng/testData/runConfiguration/module1/src/Testt.java b/plugins/testng/testData/runConfiguration/module1/src/Testt.java index 026e399b6c88..a7379e309c6b 100644 --- a/plugins/testng/testData/runConfiguration/module1/src/Testt.java +++ b/plugins/testng/testData/runConfiguration/module1/src/Testt.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public class Testt { @org.testng.annotations.Test public void test(){} diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/configuration/ConfigurationsTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/configuration/ConfigurationsTest.java index d56d94bac152..2ef4e890ef66 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/configuration/ConfigurationsTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/configuration/ConfigurationsTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 06-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/BaseTestNGInspectionsTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/BaseTestNGInspectionsTest.java index 22c413c7df97..ebf6ddd47f11 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/BaseTestNGInspectionsTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/BaseTestNGInspectionsTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 31-May-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertAnnotationInspectionTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertAnnotationInspectionTest.java index d336c6a5d857..13d8385f3c23 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertAnnotationInspectionTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertAnnotationInspectionTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 04-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJUnitInspectionTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJUnitInspectionTest.java index f6f479a77ec9..ed21043a906f 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJUnitInspectionTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJUnitInspectionTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 04-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJavadocInspectionTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJavadocInspectionTest.java index 523cefc9d406..ac61beef8f4c 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJavadocInspectionTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertJavadocInspectionTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 04-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspectionTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspectionTest.java index a452a82b1f8b..31311eaf754f 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspectionTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/ConvertOldAnnotationInspectionTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 04-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/UndeclaredTestsInspectionTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/UndeclaredTestsInspectionTest.java index 652ff3a0f971..5fae9d64799a 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/inspection/UndeclaredTestsInspectionTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/inspection/UndeclaredTestsInspectionTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 18-Jun-2007 diff --git a/plugins/testng/testSources/com/theoryinpractice/testng/intention/AddTestNGJarFixTest.java b/plugins/testng/testSources/com/theoryinpractice/testng/intention/AddTestNGJarFixTest.java index 912c1c7c2d3b..c990b7d04b30 100644 --- a/plugins/testng/testSources/com/theoryinpractice/testng/intention/AddTestNGJarFixTest.java +++ b/plugins/testng/testSources/com/theoryinpractice/testng/intention/AddTestNGJarFixTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * User: anna * Date: 04-Mar-2008 diff --git a/plugins/testng_rt/src/org/testng/IDEATestNGListener.java b/plugins/testng_rt/src/org/testng/IDEATestNGListener.java index 7a2645bc8dee..96d245ab6657 100644 --- a/plugins/testng_rt/src/org/testng/IDEATestNGListener.java +++ b/plugins/testng_rt/src/org/testng/IDEATestNGListener.java @@ -1,17 +1,17 @@ /* * Copyright 2000-2009 JetBrains s.r.o. * - * Licensed 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 + * Licensed 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 + * 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. + * 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. */ /* diff --git a/plugins/testng_rt/src/org/testng/RemoteTestNGStarter.java b/plugins/testng_rt/src/org/testng/RemoteTestNGStarter.java index 015b6529bb0f..e69876858008 100644 --- a/plugins/testng_rt/src/org/testng/RemoteTestNGStarter.java +++ b/plugins/testng_rt/src/org/testng/RemoteTestNGStarter.java @@ -1,17 +1,17 @@ /* * Copyright 2000-2009 JetBrains s.r.o. * - * Licensed 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 + * Licensed 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 + * 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. + * 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/CaptionSelection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/CaptionSelection.java index 98aba9c77c5d..5c67b37c2759 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/CaptionSelection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/CaptionSelection.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/CutCopyPasteSupport.java b/plugins/ui-designer/src/com/intellij/uiDesigner/CutCopyPasteSupport.java index 9b5540f03fef..3ab7787d2e63 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/CutCopyPasteSupport.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/CutCopyPasteSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.ide.CopyProvider; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/DesignSpacer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/DesignSpacer.java index 1236e7b4632c..42cc9b8e6f66 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/DesignSpacer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/DesignSpacer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.core.Spacer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorAnalyzer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorAnalyzer.java index bf8aa2b7eba6..b85f68237a83 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorAnalyzer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorAnalyzer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.codeHighlighting.HighlightDisplayLevel; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorInfo.java b/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorInfo.java index 477152037186..f4f66e9b0208 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorInfo.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/ErrorInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.quickFixes.QuickFix; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/FormEditingUtil.java b/plugins/ui-designer/src/com/intellij/uiDesigner/FormEditingUtil.java index 7dbb26262b4e..b0692f86dff9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/FormEditingUtil.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/FormEditingUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.lang.properties.PropertiesReferenceManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/FormFileTypeFactory.java b/plugins/ui-designer/src/com/intellij/uiDesigner/FormFileTypeFactory.java index fb16e23ee9e0..bb36249ac376 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/FormFileTypeFactory.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/FormFileTypeFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.fileTypes.FileTypeConsumer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/FormHighlightingPass.java b/plugins/ui-designer/src/com/intellij/uiDesigner/FormHighlightingPass.java index e871d0a0b6f7..e3b7c898a49b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/FormHighlightingPass.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/FormHighlightingPass.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GridBuildUtil.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GridBuildUtil.java index d7ae9331a618..344accc6f34d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GridBuildUtil.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/GridBuildUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GridChangeUtil.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GridChangeUtil.java index 95e7f8d03970..d21867175513 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GridChangeUtil.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/GridChangeUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java index 3b2f03f80330..17d3eb4dc3e4 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.codeInsight.CodeInsightUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfiguration.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfiguration.java index a8a29a4a44c7..c445e14e3779 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfiguration.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfiguration.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.components.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiFormFileType.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiFormFileType.java index ef1588376443..5d6d1b5dd50d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiFormFileType.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiFormFileType.java @@ -1,33 +1,17 @@ /* - * Copyright (c) 2004 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: + * Licensed 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 * - * -Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * -Redistribution in binary form must reproduct the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the distribution. - * - * Neither the name of JetBrains or IntelliJ IDEA - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * This software is provided "AS IS," without a warranty of any kind. ALL - * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING - * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. JETBRAINS AND ITS LICENSORS SHALL NOT - * BE LIABLE FOR ANY DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT - * OF OR RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL JETBRAINS OR ITS LICENSORS BE LIABLE FOR ANY LOST - * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, - * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY - * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN - * IF JETBRAINS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + * 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 com.intellij.uiDesigner; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/HSpacer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/HSpacer.java index de8b1d21f2d7..c5f8f066069d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/HSpacer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/HSpacer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.util.ui.UIUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/HierarchyChangeListener.java b/plugins/ui-designer/src/com/intellij/uiDesigner/HierarchyChangeListener.java index 37ae693e382c..5b1d5c9b1caa 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/HierarchyChangeListener.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/HierarchyChangeListener.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import java.util.EventListener; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/ImageFileFilter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/ImageFileFilter.java index 696753c4b558..7b1e33c2a4ea 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/ImageFileFilter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/ImageFileFilter.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/LoaderFactory.java b/plugins/ui-designer/src/com/intellij/uiDesigner/LoaderFactory.java index d5a73d53261c..3a667c0da313 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/LoaderFactory.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/LoaderFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.ProjectTopics; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/Properties.java b/plugins/ui-designer/src/com/intellij/uiDesigner/Properties.java index 66c50f2e1117..9b440cb31f5b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/Properties.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/Properties.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.components.BaseComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/PsiPropertiesProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/PsiPropertiesProvider.java index 64728f5cb7eb..5b8518f0d70b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/PsiPropertiesProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/PsiPropertiesProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionState.java b/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionState.java index f7ed1caa3592..9c1385526c85 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionState.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionState.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.application.ApplicationManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionWatcher.java b/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionWatcher.java index d1069a6bb880..ff5beb0fabb8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionWatcher.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/SelectionWatcher.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/SimpleTransferable.java b/plugins/ui-designer/src/com/intellij/uiDesigner/SimpleTransferable.java index aaa5432e7325..5a0e40a3709a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/SimpleTransferable.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/SimpleTransferable.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/StringDescriptorManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/StringDescriptorManager.java index ce7f20bd89f9..481f3f1b3b37 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/StringDescriptorManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/StringDescriptorManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/SwingProperties.java b/plugins/ui-designer/src/com/intellij/uiDesigner/SwingProperties.java index b20e3c3aed26..9fd89c3ea448 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/SwingProperties.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/SwingProperties.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import org.jetbrains.annotations.NonNls; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/UIDesignerBundle.java b/plugins/ui-designer/src/com/intellij/uiDesigner/UIDesignerBundle.java index a61dc85fb0ed..4afcef39ef76 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/UIDesignerBundle.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/UIDesignerBundle.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/VSpacer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/VSpacer.java index 53fc950caa43..6a61930c9d55 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/VSpacer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/VSpacer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.util.ui.UIUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/XmlReader.java b/plugins/ui-designer/src/com/intellij/uiDesigner/XmlReader.java index 37f29ddaa2d2..e2e5494c2f89 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/XmlReader.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/XmlReader.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/XmlWriter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/XmlWriter.java index 39a4d94d9a08..fc312d2fcaf8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/XmlWriter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/XmlWriter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.openapi.util.text.StringUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractCreateFormAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractCreateFormAction.java index 5faa7dda5060..89708fe60b33 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractCreateFormAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractCreateFormAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractGuiEditorAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractGuiEditorAction.java index d72a17bfc722..0876bb1a951e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractGuiEditorAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractGuiEditorAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractMoveSelectionAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractMoveSelectionAction.java index c626460d9463..a5591f971730 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractMoveSelectionAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AbstractMoveSelectionAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AddTabAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AddTabAction.java index 235571f2893f..1f2f1223c921 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AddTabAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/AddTabAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ChooseLocaleAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ChooseLocaleAction.java index 5fb88f28763c..c2478697844e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ChooseLocaleAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ChooseLocaleAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateComponentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateComponentAction.java index eb7a43379d89..d804e7b718e2 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateComponentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateComponentAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateDialogAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateDialogAction.java index 84191e66e8e6..a8957516908a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateDialogAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateDialogAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateFormAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateFormAction.java index d2a3ca04525d..e82148aef9d8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateFormAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateFormAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateListenerAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateListenerAction.java index 7d757a96c128..11a587e25f65 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateListenerAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/CreateListenerAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DataBindingWizardAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DataBindingWizardAction.java index 8cbdaf300ab6..2f590a658bad 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DataBindingWizardAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DataBindingWizardAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DecreaseIndentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DecreaseIndentAction.java index 2b5122ab16c5..fff91b9cdd60 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DecreaseIndentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DecreaseIndentAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DeleteAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DeleteAction.java index e93a5696697d..e95d193e6e1d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DeleteAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DeleteAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DuplicateComponentsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DuplicateComponentsAction.java index b686bd39d04d..94d310612cbd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DuplicateComponentsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/DuplicateComponentsAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ExpandSelectionAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ExpandSelectionAction.java index 08e81d235a32..3aaba3cf81e9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ExpandSelectionAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ExpandSelectionAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/FlattenAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/FlattenAction.java index 694959564ea1..aa05e4560ff6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/FlattenAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/FlattenAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GenerateMainAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GenerateMainAction.java index 79d2f53249ce..0b90e10c4cd1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GenerateMainAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GenerateMainAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupButtonsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupButtonsAction.java index 3179501ad97e..5954c385cd05 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupButtonsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupButtonsAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnActionEvent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupRowsColumnsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupRowsColumnsAction.java index 893ed10aa544..4faa42a0f996 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupRowsColumnsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/GroupRowsColumnsAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/IncreaseIndentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/IncreaseIndentAction.java index ed67efbccc52..68d83217551c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/IncreaseIndentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/IncreaseIndentAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnActionEvent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertAfterAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertAfterAction.java index 2f8600be53e5..8ef8872ead9e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertAfterAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertAfterAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertBeforeAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertBeforeAction.java index 2ed96b67e01d..1ceb4ad4a6fd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertBeforeAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/InsertBeforeAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MorphAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MorphAction.java index c454879b30ed..317e907a207a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MorphAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MorphAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveComponentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveComponentAction.java index 0e95eb31d52d..6728456338bf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveComponentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveComponentAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToDownAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToDownAction.java index 8d8600696619..774556db8158 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToDownAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToDownAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToLeftAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToLeftAction.java index c734596640e1..f542e0e8a9bc 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToLeftAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToLeftAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToRightAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToRightAction.java index 3b4a25aa4625..33b00d1c8203 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToRightAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToRightAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToUpAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToUpAction.java index 104112d82184..d718fbdde46d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToUpAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/MoveSelectionToUpAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/NavigateToListenerAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/NavigateToListenerAction.java index 510335027517..c61ef5df85a9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/NavigateToListenerAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/NavigateToListenerAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PackAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PackAction.java index 29323a498ac3..2654f2b86029 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PackAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PackAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnActionEvent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PaletteListPopupStep.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PaletteListPopupStep.java index bb33186fa7e4..22b99c747b32 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PaletteListPopupStep.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PaletteListPopupStep.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PreviewFormAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PreviewFormAction.java index 524fa92ad48e..a48421be7f98 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PreviewFormAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/PreviewFormAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ReloadCustomComponentsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ReloadCustomComponentsAction.java index e90531dddbda..37218e054a4e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ReloadCustomComponentsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ReloadCustomComponentsAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ResetValueAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ResetValueAction.java index 4b3dab6ab49c..176179a075fc 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ResetValueAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ResetValueAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnActionEvent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/RowColumnAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/RowColumnAction.java index 638577363e91..df4795425b29 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/RowColumnAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/RowColumnAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SelectAllComponentsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SelectAllComponentsAction.java index 752150c9d310..cdfe0686c438 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SelectAllComponentsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SelectAllComponentsAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowComponentTagsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowComponentTagsAction.java index bf8e53e4d121..868c9c37765d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowComponentTagsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowComponentTagsAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowGridAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowGridAction.java index 5801a4f2a923..926ce29b3dbf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowGridAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowGridAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.ToggleAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowJavadocAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowJavadocAction.java index 738990b15879..0fe6e2e0ba30 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowJavadocAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShowJavadocAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.codeInsight.documentation.DocumentationComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShrinkSelectionAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShrinkSelectionAction.java index 55c4a0beb8fb..ccbbe252164b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShrinkSelectionAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/ShrinkSelectionAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SplitAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SplitAction.java index 56355799a607..564e875326db 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SplitAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SplitAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/StartInplaceEditingAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/StartInplaceEditingAction.java index 760fd8ffd672..4bec6e2509dd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/StartInplaceEditingAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/StartInplaceEditingAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundAction.java index 337d4503e322..c8f5a2177b61 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundActionGroup.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundActionGroup.java index ef074d0fc540..4483f06bc9ec 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundActionGroup.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundActionGroup.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundPopupAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundPopupAction.java index f72d5923ac59..640073232a7f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundPopupAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/SurroundPopupAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupButtonsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupButtonsAction.java index a4c1dc85483d..2f7e6a8c4f33 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupButtonsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupButtonsAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; import com.intellij.openapi.actionSystem.AnActionEvent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupRowsColumnsAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupRowsColumnsAction.java index bee263d968cd..eae2d2bbe2da 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupRowsColumnsAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/actions/UngroupRowsColumnsAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.actions; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/BoundIconRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/BoundIconRenderer.java index 33b19211396f..c0e9be32cad3 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/BoundIconRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/BoundIconRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeBoundFieldTypeFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeBoundFieldTypeFix.java index 2aab83d4dfa5..6462cf499d5c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeBoundFieldTypeFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeBoundFieldTypeFix.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeFormComponentTypeFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeFormComponentTypeFix.java index ceabb840f224..2eccbc77b76f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeFormComponentTypeFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ChangeFormComponentTypeFix.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FieldFormReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FieldFormReference.java index f92c57f2b6a6..0de43ba82753 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FieldFormReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FieldFormReference.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassAnnotator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassAnnotator.java index 59b707ba5f2b..4fe58c3eb564 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassAnnotator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassAnnotator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.codeInsight.daemon.JavaErrorMessages; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassIndex.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassIndex.java index 4d65274ef0dd..62c28bbd17e9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassIndex.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormClassIndex.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.openapi.application.ApplicationManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormEnumConstantReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormEnumConstantReference.java index ee540eb35ccd..b5c345e040fe 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormEnumConstantReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormEnumConstantReference.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormPackageReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormPackageReference.java index 366b763b4076..bdbd5ae6ac85 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormPackageReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormPackageReference.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceContributor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceContributor.java index fac61c967b03..72bc1f716993 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceContributor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceContributor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.psi.PsiReferenceContributor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceProvider.java index b7c42b5139f4..9ff8bcc2092c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormReferenceProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.lang.properties.psi.PropertiesFile; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormUsageTypeProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormUsageTypeProvider.java index 0b8327a8448b..c02ec397008b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormUsageTypeProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormUsageTypeProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2007 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormWordsScanner.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormWordsScanner.java index 7fffd7a79cb5..03f16503e1a7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormWordsScanner.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormWordsScanner.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamer.java index f5804361d7e1..cafbb8d2bf73 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.psi.PsiClass; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamerFactory.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamerFactory.java index 40405ce2d635..7f719850834e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamerFactory.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/FormsRenamerFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.psi.PsiClass; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPass.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPass.java index 50027b7aa48a..805293ca4c32 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPass.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPass.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPassFactory.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPassFactory.java index 08a76a6194b2..87b98d2f0855 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPassFactory.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/GeneratedCodeFoldingPassFactory.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ReferenceInForm.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ReferenceInForm.java index a08e0bad8dca..0a62834a3ded 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ReferenceInForm.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ReferenceInForm.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleFileReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleFileReference.java index d63ba3605fca..67d00e294138 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleFileReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleFileReference.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleKeyReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleKeyReference.java index 8eb804961aa3..17cb4a8629c4 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleKeyReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceBundleKeyReference.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceFileReference.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceFileReference.java index 1c370a8c76cb..1cdc0e4da680 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceFileReference.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/ResourceFileReference.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/UIDesignerImplicitUsageProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/UIDesignerImplicitUsageProvider.java index a60c606aebcf..8960f9de7b05 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/binding/UIDesignerImplicitUsageProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/binding/UIDesignerImplicitUsageProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/AddClientPropertyDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/AddClientPropertyDialog.java index 3a2079948de3..db42df44ca3d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/AddClientPropertyDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/AddClientPropertyDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.clientProperties; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClassNameInputDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClassNameInputDialog.java index b5be49dfecf2..edbd68881d37 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClassNameInputDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClassNameInputDialog.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.clientProperties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClientPropertiesManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClientPropertiesManager.java index a16d99c0bb9d..ed83a56244a1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClientPropertiesManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ClientPropertiesManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.clientProperties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ConfigureClientPropertiesDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ConfigureClientPropertiesDialog.java index 80d9f2f97c62..d7664ebc6c78 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ConfigureClientPropertiesDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/clientProperties/ConfigureClientPropertiesDialog.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.clientProperties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupDescriptor.java index c34f819506dd..125c1a4ba18a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupDescriptor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupListDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupListDescriptor.java index 52dbb268201d..f59bd61d4fe0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupListDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ButtonGroupListDescriptor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtr.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtr.java index ba500efcc3b1..0b38c0b525b3 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtr.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtr.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.uiDesigner.FormEditingUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtrDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtrDescriptor.java index c800ee5f4485..f5c09653fa01 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtrDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentPtrDescriptor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.ide.util.treeView.NodeDescriptor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentSelectionListener.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentSelectionListener.java index 89c77dbecb0b..09f8885255aa 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentSelectionListener.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentSelectionListener.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTree.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTree.java index 4f22a25d3753..9c5a8633ba45 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTree.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTree.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.codeHighlighting.HighlightDisplayLevel; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeBuilder.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeBuilder.java index fcfe1c3c6f69..cdf2bde56c5a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeBuilder.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.ide.util.treeView.AbstractTreeBuilder; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeStructure.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeStructure.java index c66e81e04c11..4ef7b4424250 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeStructure.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/ComponentTreeStructure.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.ide.util.treeView.AbstractTreeStructure; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/QuickFixManagerImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/QuickFixManagerImpl.java index f1129496be5e..1c41388f5685 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/QuickFixManagerImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/QuickFixManagerImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/RootDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/RootDescriptor.java index 367c386ae790..7f78634a432e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/RootDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/RootDescriptor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; import com.intellij.ide.util.treeView.NodeDescriptor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionDescriptor.java index c99de80fa9fe..2b1fe31de65f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionDescriptor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionGroupDescriptor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionGroupDescriptor.java index fef9af15b1a7..6995383ad98b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionGroupDescriptor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/componentTree/SuppressionGroupDescriptor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.componentTree; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ActiveDecorationLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ActiveDecorationLayer.java index 7442d7756857..6df0a4da2154 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ActiveDecorationLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ActiveDecorationLayer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.actionSystem.DefaultActionGroup; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/CachedGridImage.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/CachedGridImage.java index a4592d6ff6e3..821792ecba6d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/CachedGridImage.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/CachedGridImage.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDragObject.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDragObject.java index 4e451bc4274a..bd51d81cebd8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDragObject.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDragObject.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDropLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDropLocation.java index 962578ba9103..4eb4e69f4398 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDropLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentDropLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentItemDragObject.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentItemDragObject.java index 9b17b89186ec..b10bd7fe3382 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentItemDragObject.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ComponentItemDragObject.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DesignDropTargetListener.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DesignDropTargetListener.java index d080a2aabf2e..648fe8605438 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DesignDropTargetListener.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DesignDropTargetListener.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.ide.palette.impl.PaletteManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragLayer.java index 2f4dfe893de9..dca9387c35ff 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragLayer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragSelectionProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragSelectionProcessor.java index 2296003ff610..2699d454ba77 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragSelectionProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DragSelectionProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DraggedComponentList.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DraggedComponentList.java index 2a2a26dd619f..28774bacbf27 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DraggedComponentList.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/DraggedComponentList.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/EventProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/EventProcessor.java index 9106b7c9070a..4ed9db73a8de 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/EventProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/EventProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import java.awt.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackLayer.java index 2f209234dfe6..8f0e490ada54 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackLayer.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackPainter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackPainter.java index 25192ebfc850..65ce0cbbcd7a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackPainter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FeedbackPainter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import java.awt.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FirstComponentInsertLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FirstComponentInsertLocation.java index 47004606b721..a4c5797b1a1c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FirstComponentInsertLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FirstComponentInsertLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FormFirstComponentInsertLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FormFirstComponentInsertLocation.java index 1292f6218cd4..ad3629d15578 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FormFirstComponentInsertLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/FormFirstComponentInsertLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GlassLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GlassLayer.java index 37799d6c05a4..51b6236046db 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GlassLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GlassLayer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.actionSystem.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridCaptionPanel.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridCaptionPanel.java index 0c02e6340313..f162df186972 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridCaptionPanel.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridCaptionPanel.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridDropLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridDropLocation.java index 700e0115aed2..c66cae060f30 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridDropLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridDropLocation.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertLocation.java index 0b504c8a97f2..5f704f9b5f6d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertMode.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertMode.java index 1790bf798cc8..4af3dd5c7bec 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertMode.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertMode.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; /** diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertProcessor.java index 983a68504dd1..3a21c4de40b8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridInsertProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridReplaceDropLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridReplaceDropLocation.java index 41c4d4c53170..6a8b973dd9f4 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridReplaceDropLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GridReplaceDropLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GroupSelectionProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GroupSelectionProcessor.java index d5331334be39..66e5bc950782 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GroupSelectionProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GroupSelectionProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GuiEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GuiEditor.java index 23751867d658..a8b1b0b64394 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GuiEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/GuiEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.codeInsight.daemon.DaemonCodeAnalyzer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/HorzInsertFeedbackPainter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/HorzInsertFeedbackPainter.java index 41ddfb6971dd..a41ffaf86ba8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/HorzInsertFeedbackPainter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/HorzInsertFeedbackPainter.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InplaceEditingLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InplaceEditingLayer.java index 3ef8dca08089..e76f4afd80a2 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InplaceEditingLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InplaceEditingLayer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.application.ApplicationManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java index 2a33d5a6e5dc..ff98c0511d9f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ListenerNavigateButton.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ListenerNavigateButton.java index 63171154886f..91e1223c5118 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ListenerNavigateButton.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ListenerNavigateButton.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/MainProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/MainProcessor.java index 576764ddc35f..a4600cb74500 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/MainProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/MainProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.ide.palette.impl.PaletteManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/NoDropLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/NoDropLocation.java index bd05fe5ef6aa..58c37f606662 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/NoDropLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/NoDropLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/Painter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/Painter.java index da4b091af69f..f353522e0f94 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/Painter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/Painter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.ui.LightColors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PassiveDecorationLayer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PassiveDecorationLayer.java index fcf7169a6f84..851338b1ff31 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PassiveDecorationLayer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PassiveDecorationLayer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.openapi.util.IconLoader; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PasteProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PasteProcessor.java index 52339d6e7b4f..532b2fbf7ad9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PasteProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/PasteProcessor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/QuickFixManagerImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/QuickFixManagerImpl.java index db26b7698940..8625d4d5b085 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/QuickFixManagerImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/QuickFixManagerImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.uiDesigner.ErrorAnalyzer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ResizeProcessor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ResizeProcessor.java index b6ae142bd391..fa2fb6ea69e6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ResizeProcessor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/ResizeProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; import com.intellij.uiDesigner.CutCopyPasteSupport; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/VertInsertFeedbackPainter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/VertInsertFeedbackPainter.java index 704879e60e42..3dc12c6384a2 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/VertInsertFeedbackPainter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/designSurface/VertInsertFeedbackPainter.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.designSurface; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/MyEditorState.java b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/MyEditorState.java index 8bee3226902b..fef1e13ecf91 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/MyEditorState.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/MyEditorState.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.editor; import com.intellij.openapi.fileEditor.FileEditorState; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditor.java index 3d21d8efa583..39dd6b9c1e23 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.editor; import com.intellij.codeHighlighting.BackgroundEditorHighlighter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditorProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditorProvider.java index e285d0a1453d..bac8bd5735b6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditorProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/editor/UIFormEditorProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.editor; import com.intellij.openapi.application.ex.ApplicationManagerEx; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/CreateFormFromTemplateHandler.java b/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/CreateFormFromTemplateHandler.java index cdd9848ae2b8..1834af17bb6a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/CreateFormFromTemplateHandler.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/CreateFormFromTemplateHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.fileTemplate; import com.intellij.ide.fileTemplates.DefaultCreateFromTemplateHandler; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/SaveFormAsTemplateHandler.java b/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/SaveFormAsTemplateHandler.java index bf015eb8fb5d..75d5fb25466e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/SaveFormAsTemplateHandler.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/fileTemplate/SaveFormAsTemplateHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.fileTemplate; import com.intellij.openapi.fileTypes.StdFileTypes; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nFormInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nFormInspection.java index 42747fe715c4..b7a26ff35e8e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nFormInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nFormInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.codeInsight.AnnotationUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormBorderQuickFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormBorderQuickFix.java index e59165a8cf5f..1a14dc7d95cd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormBorderQuickFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormBorderQuickFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormPropertyQuickFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormPropertyQuickFix.java index cebba4a86d55..83d99813f9a5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormPropertyQuickFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormPropertyQuickFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.uiDesigner.propertyInspector.IntrospectedProperty; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormQuickFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormQuickFix.java index e78fa4c839ba..9b1fdac8e2f5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormQuickFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeFormQuickFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.codeInsight.CodeInsightBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeTabTitleQuickFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeTabTitleQuickFix.java index 44471e37dfef..ba251bb6a73f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeTabTitleQuickFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/I18nizeTabTitleQuickFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/InvalidPropertyKeyFormInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/InvalidPropertyKeyFormInspection.java index b1150f0a31e9..ae07c2150042 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/InvalidPropertyKeyFormInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/i18n/InvalidPropertyKeyFormInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.i18n; import com.intellij.lang.properties.PropertiesReferenceManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/AssignMnemonicFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/AssignMnemonicFix.java index b5d2444a3283..21f066578d6a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/AssignMnemonicFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/AssignMnemonicFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.ui.Messages; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BaseFormInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BaseFormInspection.java index 445f41bc3a33..6c865ba1ed3b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BaseFormInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BaseFormInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.codeInsight.daemon.HighlightDisplayKey; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BoundFieldAssignmentInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BoundFieldAssignmentInspection.java index cd610bd9f749..cdbbf1842c46 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BoundFieldAssignmentInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/BoundFieldAssignmentInspection.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/DuplicateMnemonicInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/DuplicateMnemonicInspection.java index a0622618e0a4..7f4a09413b02 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/DuplicateMnemonicInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/DuplicateMnemonicInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/EditorQuickFixProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/EditorQuickFixProvider.java index 196b2cf4a3d8..ed6014a88f25 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/EditorQuickFixProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/EditorQuickFixProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormEditorErrorCollector.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormEditorErrorCollector.java index d50f66dfbde5..26d77c399c6a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormEditorErrorCollector.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormEditorErrorCollector.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.codeInsight.daemon.HighlightDisplayKey; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormErrorCollector.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormErrorCollector.java index cf5a81956956..df8dd43c4c37 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormErrorCollector.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormErrorCollector.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import org.jetbrains.annotations.Nullable; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormFileErrorCollector.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormFileErrorCollector.java index cbca8b656f80..c0a1fd072519 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormFileErrorCollector.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormFileErrorCollector.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import org.jetbrains.annotations.Nullable; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionProvider.java index 360855a91b8e..cb593a31d23c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.codeInspection.InspectionToolProvider; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionUtil.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionUtil.java index ca0a728cc544..213a66bea6be 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionUtil.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/FormInspectionUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/Java15FormInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/Java15FormInspection.java index c1a6cff9e4ed..07f785369e3e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/Java15FormInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/Java15FormInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.codeInspection.InspectionProfileEntry; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/MissingMnemonicInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/MissingMnemonicInspection.java index 7b7cf1aef295..cdfdb6814a77 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/MissingMnemonicInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/MissingMnemonicInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoButtonGroupInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoButtonGroupInspection.java index f6ccbc26ba6a..4a3d65da3d7c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoButtonGroupInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoButtonGroupInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoLabelForInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoLabelForInspection.java index 77446309269d..97228f857979 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoLabelForInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoLabelForInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.command.CommandProcessor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoScrollPaneInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoScrollPaneInspection.java index caef93997aab..8c5b4e79b663 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoScrollPaneInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/NoScrollPaneInspection.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/OneButtonGroupInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/OneButtonGroupInspection.java index 5729e5a0590c..bd5c6c901ee7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/OneButtonGroupInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/OneButtonGroupInspection.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/StringDescriptorInspection.java b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/StringDescriptorInspection.java index 3d156cc579ea..e302f8a9844e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/StringDescriptorInspection.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/inspections/StringDescriptorInspection.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.inspections; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/BindingsCache.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/BindingsCache.java index d2805b43dc68..b34423d84de1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/BindingsCache.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/BindingsCache.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * @author: Eugene Zhuravlev * Date: Jul 4, 2003 diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/BorderLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/BorderLayoutSourceGenerator.java index 29c0fd99ad13..f52af060bfdd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/BorderLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/BorderLayoutSourceGenerator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/CardLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/CardLayoutSourceGenerator.java index 97479180e2db..6e11cc877d5e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/CardLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/CardLayoutSourceGenerator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/CopyResourcesUtil.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/CopyResourcesUtil.java index f705b6c4f2d4..c21b4a560a98 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/CopyResourcesUtil.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/CopyResourcesUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.openapi.util.io.FileUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FlowLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FlowLayoutSourceGenerator.java index 79814c69307c..25e8fcf60198 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FlowLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FlowLayoutSourceGenerator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2ByteCodeCompiler.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2ByteCodeCompiler.java index d6a17aad6afe..d49afd6db9d3 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2ByteCodeCompiler.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2ByteCodeCompiler.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.compiler.PsiClassWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2SourceCompiler.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2SourceCompiler.java index e224c4f37bc5..996dbf898ebd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2SourceCompiler.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/Form2SourceCompiler.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.openapi.application.ApplicationManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormElementNavigatable.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormElementNavigatable.java index 95425bdd3b15..0b17ca9c78dc 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormElementNavigatable.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormElementNavigatable.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormLayoutSourceGenerator.java index cfd39ff80cc3..ec43aad5aff4 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormLayoutSourceGenerator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormSourceCodeGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormSourceCodeGenerator.java index ef128375e176..ebea7c275318 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormSourceCodeGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/FormSourceCodeGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.lexer.JavaLexer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridBagLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridBagLayoutSourceGenerator.java index db42b57224c0..33f65c06171f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridBagLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridBagLayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.compiler.GridBagConverter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridLayoutSourceGenerator.java index 30b8e81f1406..72e056b0afe6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/GridLayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.lw.LwComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/LayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/LayoutSourceGenerator.java index 78cb76a1d012..6aab5cff0e44 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/LayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/LayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.compiler.Utils; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/PreviewNestedFormLoader.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/PreviewNestedFormLoader.java index fed39afc7113..dbb2443c74a5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/PreviewNestedFormLoader.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/PreviewNestedFormLoader.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/PsiNestedFormLoader.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/PsiNestedFormLoader.java index 6168f16037f8..661d0a30017d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/PsiNestedFormLoader.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/PsiNestedFormLoader.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/ScrollPaneLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/ScrollPaneLayoutSourceGenerator.java index 6403cf1d7527..2942d0e209e1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/ScrollPaneLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/ScrollPaneLayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.lw.LwComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/SplitPaneLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/SplitPaneLayoutSourceGenerator.java index 2013d15367a1..593df65d08ef 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/SplitPaneLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/SplitPaneLayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.lw.LwComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/TabbedPaneLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/TabbedPaneLayoutSourceGenerator.java index 637151d898b3..d3d1370078dd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/TabbedPaneLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/TabbedPaneLayoutSourceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; import com.intellij.uiDesigner.lw.LwComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/make/ToolBarLayoutSourceGenerator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/make/ToolBarLayoutSourceGenerator.java index af076667e6bf..2b81438e9d3a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/make/ToolBarLayoutSourceGenerator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/make/ToolBarLayoutSourceGenerator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddComponentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddComponentAction.java index c9adbf56ebc9..f34cb9743da5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddComponentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddComponentAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddGroupAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddGroupAction.java index 589908e3796b..4bef6a40ee31 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddGroupAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/AddGroupAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItem.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItem.java index a85501e21976..8b5ff16c0faf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItem.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItem.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; import com.intellij.ide.dnd.DnDDragStartBean; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItemDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItemDialog.java index 3d82b12d2a8d..1437744be915 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItemDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/ComponentItemDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteComponentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteComponentAction.java index 34e10d72f576..96c91b19cfeb 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteComponentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteComponentAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteGroupAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteGroupAction.java index e26450647032..fbed8fd5ba57 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteGroupAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/DeleteGroupAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditComponentAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditComponentAction.java index 964c15958e64..1c208d02babc 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditComponentAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditComponentAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditGroupAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditGroupAction.java index 07120f3a9a5c..392df3666be6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditGroupAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/EditGroupAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/GroupItem.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/GroupItem.java index ebdc97d54446..2950e72feb32 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/GroupItem.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/GroupItem.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; import com.intellij.ide.palette.PaletteGroup; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/Palette.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/Palette.java index 9931d08bd459..2223163b0f2e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/Palette.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/Palette.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; import com.intellij.ide.ui.LafManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/PaletteRefactoringListenerProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/PaletteRefactoringListenerProvider.java index c161c5a9dd69..514f469ddec0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/PaletteRefactoringListenerProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/PaletteRefactoringListenerProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; import com.intellij.refactoring.listeners.RefactoringElementListenerProvider; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/UIDesignerPaletteProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/UIDesignerPaletteProvider.java index a60cd173860a..5635ce99d90e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/palette/UIDesignerPaletteProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/palette/UIDesignerPaletteProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.palette; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/Form.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/Form.java index 81b78195ec2f..e61c3ec1915d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/Form.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/Form.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.projectView; import com.intellij.openapi.actionSystem.DataKey; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProvider.java index 8e26da4057ef..e410cf085633 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.projectView; import com.intellij.ide.DeleteProvider; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMoveProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMoveProvider.java index 2f21e2ef5987..851a7ea087af 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMoveProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormMoveProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormNode.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormNode.java index 3b9b8a72e6eb..40eb488f99b0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormNode.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormNode.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.projectView; import com.intellij.ide.IdeBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormRenameHandler.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormRenameHandler.java index 5217e0c257a1..5d719a73222d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormRenameHandler.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/FormRenameHandler.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/UIDesignerFavoriteNodeProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/UIDesignerFavoriteNodeProvider.java index 18d622336196..dad7c0ddd1d0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/UIDesignerFavoriteNodeProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/projectView/UIDesignerFavoriteNodeProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.projectView; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/IntrospectedProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/IntrospectedProperty.java index b06f2ff961db..99c5bfd22ee0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/IntrospectedProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/IntrospectedProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.openapi.util.Comparing; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/Property.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/Property.java index 1bd76eb21bc8..b0cd56e6ca8d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/Property.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/Property.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditor.java index 8578bbb811dc..5b5f4ded27c2 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorAdapter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorAdapter.java index 7b9ef57658f4..4e688dac9bc1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorAdapter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorAdapter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; /** diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorListener.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorListener.java index ba21bbd102b4..65036571943e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorListener.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyEditorListener.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import java.util.EventListener; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspector.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspector.java index 78eab430d961..808ff53f3f99 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspector.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspector.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java index f4cfbb0151bb..869ce92433f3 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.codeInsight.daemon.impl.SeverityRegistrar; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyRenderer.java index 4f436cc97ea7..f679debbe91b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/PropertyRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.uiDesigner.radComponents.RadRootContainer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/QuickFixManagerImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/QuickFixManagerImpl.java index 00ad9dbf061a..f04c19962106 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/QuickFixManagerImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/QuickFixManagerImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/ReadOnlyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/ReadOnlyProperty.java index 068bb9ebae51..59379bfaf79b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/ReadOnlyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/ReadOnlyProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/UIDesignerToolWindowManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/UIDesignerToolWindowManager.java index 38828289aa24..346ae4760427 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/UIDesignerToolWindowManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/UIDesignerToolWindowManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/AbstractTextFieldEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/AbstractTextFieldEditor.java index aed7816783ee..056bab0053a7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/AbstractTextFieldEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/AbstractTextFieldEditor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BindingEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BindingEditor.java index 00113c4e5e78..e4757904e033 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BindingEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BindingEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BooleanEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BooleanEditor.java index 8a7720c01c81..9b550275e3ba 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BooleanEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BooleanEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BorderTypeEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BorderTypeEditor.java index f152ac6eb78e..c7002289340d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BorderTypeEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/BorderTypeEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/CharEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/CharEditor.java index 839497f4c728..e3ea0c8a2be6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/CharEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/CharEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; /** diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ColorEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ColorEditor.java index 7445098d351c..531b9555c7db 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ColorEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ColorEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComboBoxPropertyEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComboBoxPropertyEditor.java index 6521ae97cd30..efdc5d5c59b7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComboBoxPropertyEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComboBoxPropertyEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.openapi.ui.ComboBox; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComponentEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComponentEditor.java index a56191cd6ff8..41cb6b8e2cbd 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComponentEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ComponentEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.openapi.util.Condition; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/EnumEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/EnumEditor.java index 9805d444ba0a..4065e045430b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/EnumEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/EnumEditor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditor.java index bb07329a6598..2d072bd8118f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.uiDesigner.propertyInspector.PropertyEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditorDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditorDialog.java index b87ef2bce8de..2ed89053d6e0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditorDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/FontEditorDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IconEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IconEditor.java index 01f043fc6fcf..c80a5ea788d1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IconEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IconEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.ide.util.TreeClassChooserFactory; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/InsetsEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/InsetsEditor.java index 4e7950c3dd03..d127409a5cf8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/InsetsEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/InsetsEditor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEditor.java index 1db82fdb60da..6e43d9ba5241 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.uiDesigner.UIDesignerBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEnumEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEnumEditor.java index a855437b13b8..d778820c5f60 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEnumEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntEnumEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; import com.intellij.uiDesigner.propertyInspector.PropertyEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntRegexEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntRegexEditor.java index 4e8dd34d2727..446dd064d84b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntRegexEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/IntRegexEditor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListEditorDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListEditorDialog.java index 60e585930e00..a2e14f92df18 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListEditorDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListEditorDialog.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListModelEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListModelEditor.java index 9a488b7db910..796870fb2fa1 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListModelEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/ListModelEditor.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/KeyChooserDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/KeyChooserDialog.java index 343bee9843ad..cf68d6c69b91 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/KeyChooserDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/KeyChooserDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors.string; import com.intellij.lang.properties.psi.PropertiesFile; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/NewKeyDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/NewKeyDialog.java index 94fa6c089bbf..2838cf1ebded 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/NewKeyDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/NewKeyDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors.string; import com.intellij.openapi.ui.DialogWrapper; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditor.java index 23a92e138a0f..99a6bbc82fcf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors.string; import com.intellij.openapi.actionSystem.AnAction; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditorDialog.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditorDialog.java index aec86584fcf9..8d326be9df76 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditorDialog.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/editors/string/StringEditorDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.editors.string; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractBooleanProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractBooleanProperty.java index 40b8a50a67d1..7cce2b819c06 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractBooleanProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractBooleanProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractDimensionProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractDimensionProperty.java index fa5f33a8bc2a..34cf815f4b36 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractDimensionProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractDimensionProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.FormEditingUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractGridLayoutProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractGridLayoutProperty.java index 9e1c0f7ccf3f..ab69378b242d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractGridLayoutProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractGridLayoutProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractInsetsProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractInsetsProperty.java index e2028b66c070..864e7cc6351d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractInsetsProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractInsetsProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.Property; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractIntProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractIntProperty.java index a5ac4074212f..bc73fff5c266 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractIntProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AbstractIntProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.Property; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignProperty.java index d570f8c7f432..4a1c1fe19ae5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignPropertyProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignPropertyProvider.java index 082bac9d30e8..1f1cc9c8d78b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignPropertyProvider.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/AlignPropertyProvider.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BindingProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BindingProperty.java index d045f221c767..e293da3dc604 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BindingProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BindingProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BorderProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BorderProperty.java index b0063b146414..2356440a1d30 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BorderProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/BorderProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.project.Project; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ButtonGroupProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ButtonGroupProperty.java index 2e18927ceca6..a844bcd8381c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ButtonGroupProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ButtonGroupProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.ui.ColoredListCellRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClassToBindProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClassToBindProperty.java index 6bcea5e2b933..189c448d73ec 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClassToBindProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClassToBindProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.ide.util.TreeClassChooser; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertiesProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertiesProperty.java index e057213e8adc..7ac19d45c203 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertiesProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertiesProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertyProperty.java index 4c8fba1cdfd1..1d349178f114 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/ClientPropertyProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/CustomCreateProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/CustomCreateProperty.java index 1cad9200f375..83faabc70dd0 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/CustomCreateProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/CustomCreateProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HGapProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HGapProperty.java index ca3eb3e4853e..7a443fe4cf2c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HGapProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HGapProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.AbstractLayout; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HSizePolicyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HSizePolicyProperty.java index 956679d68150..26a37dd87d9f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HSizePolicyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HSizePolicyProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HorzAlignProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HorzAlignProperty.java index dec9c50bf1b0..e54f0b1a907c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HorzAlignProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/HorzAlignProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IdentifierValidator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IdentifierValidator.java index d0a081eac2a1..42372bd96104 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IdentifierValidator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IdentifierValidator.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IndentProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IndentProperty.java index 5c4dfc673abf..24900475cf81 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IndentProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IndentProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntFieldProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntFieldProperty.java index 2937bc420aa6..ec5177aeb690 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntFieldProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntFieldProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroBooleanProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroBooleanProperty.java index 54c935c0c5ae..2842eca01095 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroBooleanProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroBooleanProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.XmlWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroCharProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroCharProperty.java index 40f4ee5f8b34..655fedecb413 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroCharProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroCharProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.PropertyEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroColorProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroColorProperty.java index 8e6d4d6eef21..149359524820 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroColorProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroColorProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.util.Comparing; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroComponentProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroComponentProperty.java index ad8ab9560c84..db9f323dc662 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroComponentProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroComponentProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.util.Condition; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroDimensionProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroDimensionProperty.java index 900c278ea69f..bd4c57fea689 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroDimensionProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroDimensionProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.XmlWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroEnumProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroEnumProperty.java index a881d91e2f60..7e91ccc40ead 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroEnumProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroEnumProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroFontProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroFontProperty.java index aaa041c2bf33..35db152ff06b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroFontProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroFontProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.util.Comparing; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIconProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIconProperty.java index d8e101ebca13..ca95726627ef 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIconProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIconProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroInsetsProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroInsetsProperty.java index 613619cc01e4..4526f6bf2374 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroInsetsProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroInsetsProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.XmlWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIntProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIntProperty.java index d6b36189f805..51d435901cab 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIntProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroIntProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.IntrospectedProperty; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroListModelProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroListModelProperty.java index c360d68673ed..aba673924fbb 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroListModelProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroListModelProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroPrimitiveTypeProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroPrimitiveTypeProperty.java index 489741797c2f..16b0a1883475 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroPrimitiveTypeProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroPrimitiveTypeProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.IntrospectedProperty; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroRectangleProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroRectangleProperty.java index 6f10112bd5e0..50673cfcd1fe 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroRectangleProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroRectangleProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.XmlWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroStringProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroStringProperty.java index 38610007bbe2..40e691c0d27f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroStringProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/IntroStringProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/LayoutManagerProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/LayoutManagerProperty.java index a7d0b047964d..d1824b9b3f23 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/LayoutManagerProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/LayoutManagerProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.propertyInspector.Property; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MarginProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MarginProperty.java index 152bf646ca5c..2219058ce32c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MarginProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MarginProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.AbstractLayout; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MaximumSizeProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MaximumSizeProperty.java index 38e0393e8152..e0e223bdd550 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MaximumSizeProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MaximumSizeProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MinimumSizeProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MinimumSizeProperty.java index 58c83bc5b4c8..4058087e5081 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MinimumSizeProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/MinimumSizeProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/PreferredSizeProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/PreferredSizeProperty.java index 86b88956d81d..693cf1acabb6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/PreferredSizeProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/PreferredSizeProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.radComponents.RadComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeHorizontallyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeHorizontallyProperty.java index 75c574f5a5db..7cdcc7efdc41 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeHorizontallyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeHorizontallyProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.GridLayoutManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeVerticallyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeVerticallyProperty.java index aa8cbf74f9ad..2aef9541fa43 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeVerticallyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SameSizeVerticallyProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.GridLayoutManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SizePolicyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SizePolicyProperty.java index 08cc98e2e93d..10b245279e66 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SizePolicyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/SizePolicyProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.FormEditingUtil; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/UseParentLayoutProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/UseParentLayoutProperty.java index 661ca00b7da2..001640b1eebf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/UseParentLayoutProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/UseParentLayoutProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VGapProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VGapProperty.java index 8c1d23509e39..05d2fa182717 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VGapProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VGapProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.AbstractLayout; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VSizePolicyProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VSizePolicyProperty.java index 554c4ba5bc9f..e1e82ac2ef7f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VSizePolicyProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VSizePolicyProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VertAlignProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VertAlignProperty.java index 058f5288644b..0921bc93f2a9 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VertAlignProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/properties/VertAlignProperty.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.properties; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/BooleanRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/BooleanRenderer.java index 7b1403ffaaae..45281330cccf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/BooleanRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/BooleanRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.propertyInspector.PropertyRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ClassToBindRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ClassToBindRenderer.java index a970be8a0250..e08f0dbfc357 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ClassToBindRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ClassToBindRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.psi.PsiNameHelper; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ColorRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ColorRenderer.java index 8c70b923bc42..e382809efee5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ColorRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ColorRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.lw.ColorDescriptor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ComponentRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ComponentRenderer.java index 1c52531c39e8..ec834d1d811b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ComponentRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/ComponentRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.ui.ColoredListCellRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/DimensionRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/DimensionRenderer.java index 29bee60f79d0..0a5e072b6607 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/DimensionRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/DimensionRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.psi.PsiKeyword; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/FontRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/FontRenderer.java index dc1a85e4188b..37a923bb3b77 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/FontRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/FontRenderer.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IconRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IconRenderer.java index ad8aa5be119a..c963f5cdf042 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IconRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IconRenderer.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/InsetsPropertyRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/InsetsPropertyRenderer.java index 702956a87477..9247be6f762d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/InsetsPropertyRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/InsetsPropertyRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import org.jetbrains.annotations.NotNull; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IntEnumRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IntEnumRenderer.java index a836d7708e04..c7e707eb743e 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IntEnumRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/IntEnumRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.propertyInspector.editors.IntEnumEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/LabelPropertyRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/LabelPropertyRenderer.java index 8cc19ea740aa..f8787fce036d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/LabelPropertyRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/LabelPropertyRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.propertyInspector.PropertyRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/RectangleRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/RectangleRenderer.java index 2982d9223a10..fe9e8998e5f6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/RectangleRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/RectangleRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import java.awt.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/SizePolicyRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/SizePolicyRenderer.java index c55d32118458..f0f1ddd87242 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/SizePolicyRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/SizePolicyRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/StringRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/StringRenderer.java index 5623a7f285df..32c49fbeee44 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/StringRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/propertyInspector/renderers/StringRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.propertyInspector.renderers; import com.intellij.uiDesigner.lw.StringDescriptor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ChangeFieldTypeFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ChangeFieldTypeFix.java index 5d9b83f0729d..eae1ba681570 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ChangeFieldTypeFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ChangeFieldTypeFix.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2004 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateClassToBindFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateClassToBindFix.java index 81cc3dd8a6c0..af7756b76bb5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateClassToBindFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateClassToBindFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateFieldFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateFieldFix.java index 11c14cf5731d..722af9b0acaa 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateFieldFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/CreateFieldFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FocusListenerImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FocusListenerImpl.java index 9fa90e0f276c..c8d46ae72e68 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FocusListenerImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FocusListenerImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import org.jetbrains.annotations.NotNull; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FormInspectionTool.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FormInspectionTool.java index b5e0187174a3..c0ce4ff7369a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FormInspectionTool.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/FormInspectionTool.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.psi.PsiElement; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/GenerateCreateComponentsFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/GenerateCreateComponentsFix.java index 19280559d29c..ca298a491142 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/GenerateCreateComponentsFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/GenerateCreateComponentsFix.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/LightBulbComponentImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/LightBulbComponentImpl.java index 0d7022889f14..daac09c013bf 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/LightBulbComponentImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/LightBulbComponentImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.openapi.actionSystem.ActionManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFix.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFix.java index a69f12c00b25..98b36b0e299f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFix.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFix.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.uiDesigner.designSurface.GuiEditor; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFixManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFixManager.java index dca280bddb5d..82788b401418 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFixManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/QuickFixManager.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.codeInsight.daemon.DaemonCodeAnalyzer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ShowHintAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ShowHintAction.java index 3d1217b48702..f8db319cb65a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ShowHintAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/ShowHintAction.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.openapi.actionSystem.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/VisibilityWatcherImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/VisibilityWatcherImpl.java index 732e3e8cf901..4c524b4ecf25 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/VisibilityWatcherImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/quickFixes/VisibilityWatcherImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.quickFixes; import com.intellij.openapi.wm.impl.VisibilityWatcher; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/ButtonGroupPropertiesPanel.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/ButtonGroupPropertiesPanel.java index 85f1acf22f4d..d148e56d551c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/ButtonGroupPropertiesPanel.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/ButtonGroupPropertiesPanel.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/CustomPropertiesPanel.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/CustomPropertiesPanel.java index c20931ffbb13..1a6ffb955cba 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/CustomPropertiesPanel.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/CustomPropertiesPanel.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FlowDropLocation.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FlowDropLocation.java index 15fa6b6ef1a2..375f4916da60 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FlowDropLocation.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FlowDropLocation.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FormLayoutColumnProperties.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FormLayoutColumnProperties.java index 49d914043430..98e1d18eac57 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FormLayoutColumnProperties.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/FormLayoutColumnProperties.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/GridLayoutColumnProperties.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/GridLayoutColumnProperties.java index ec8309390dab..2f5f8a83f5c2 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/GridLayoutColumnProperties.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/GridLayoutColumnProperties.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/LayoutManagerRegistry.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/LayoutManagerRegistry.java index 2321bd86b009..f98043d597f8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/LayoutManagerRegistry.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/LayoutManagerRegistry.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractGridLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractGridLayoutManager.java index cb5481d442bf..5a274017e380 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractGridLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractGridLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractIndexedLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractIndexedLayoutManager.java index 17ed5a195930..020767950777 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractIndexedLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAbstractIndexedLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAtomicComponent.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAtomicComponent.java index cb95c8856916..b7d479743019 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAtomicComponent.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadAtomicComponent.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBorderLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBorderLayoutManager.java index 361ff66f8a0e..12fb2f52c12a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBorderLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBorderLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBoxLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBoxLayoutManager.java index be7f6ded00b7..8f1d8cca75f8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBoxLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadBoxLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadButtonGroup.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadButtonGroup.java index 6caff21ce5e3..c7b01aec8d96 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadButtonGroup.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadButtonGroup.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.uiDesigner.XmlWriter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadCardLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadCardLayoutManager.java index 07f28e304e28..6569d04da758 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadCardLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadCardLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponent.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponent.java index a4a73453e870..7f6aa9ca299a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponent.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponent.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponentFactory.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponentFactory.java index 054eef4e496e..7a07d0e62a16 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponentFactory.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadComponentFactory.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadContainer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadContainer.java index 2098b1cf20cf..420f9a093413 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadContainer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadContainer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadErrorComponent.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadErrorComponent.java index bd6de67dd5d5..6d86909e588a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadErrorComponent.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadErrorComponent.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFlowLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFlowLayoutManager.java index 0fc3f6b4b24e..62385cd5f87f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFlowLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFlowLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFormLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFormLayoutManager.java index 5573dc78ea20..0b43cbafbc21 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFormLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadFormLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManager.java index 7da0137532bc..df00ab503226 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridLayoutManager.java index 9a1bbc63ec29..781bfe1c72fa 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadGridLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadHSpacer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadHSpacer.java index de879e528f81..f149978d7edb 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadHSpacer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadHSpacer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadLayoutManager.java index 3127fa2bf0af..29597a08f256 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadNestedForm.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadNestedForm.java index 87613fc7c535..00913d2dc02c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadNestedForm.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadNestedForm.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadRootContainer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadRootContainer.java index b86f9bcd15dd..d1c7e6342a13 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadRootContainer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadRootContainer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadScrollPane.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadScrollPane.java index 41a56142e091..e89db7e360f7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadScrollPane.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadScrollPane.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSplitPane.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSplitPane.java index 217cae1b515a..2736730c70b7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSplitPane.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSplitPane.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSwingGridLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSwingGridLayoutManager.java index 0aa2507fb04c..0b0835e0e55a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSwingGridLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadSwingGridLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTabbedPane.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTabbedPane.java index 5ed130e42260..4670d2199a38 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTabbedPane.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTabbedPane.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTable.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTable.java index 1f237130c4d6..f02ca881de36 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTable.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadTable.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadToolBar.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadToolBar.java index 12baa5340b78..5e01cdeaf950 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadToolBar.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadToolBar.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadVSpacer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadVSpacer.java index a646897083c0..1e0c24d31854 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadVSpacer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadVSpacer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.openapi.module.Module; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadXYLayoutManager.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadXYLayoutManager.java index 029608336a70..15db1adf414f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadXYLayoutManager.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/RadXYLayoutManager.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/XYLayoutManagerImpl.java b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/XYLayoutManagerImpl.java index bb2144cca7f0..c9a940a21e59 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/XYLayoutManagerImpl.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/radComponents/XYLayoutManagerImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.uiDesigner.shared.XYLayoutManager; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/CreateSnapShotAction.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/CreateSnapShotAction.java index 5f960104feed..c0d8760bfaf8 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/CreateSnapShotAction.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/CreateSnapShotAction.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooter.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooter.java index a08073183e27..8104c541b5ae 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooter.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooter.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationExtension.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationExtension.java index d6dca95746b5..93a82ae2cd39 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationExtension.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationExtension.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2007 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationSettings.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationSettings.java index 7adc496f9aa1..35c7289c0e69 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationSettings.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterConfigurationSettings.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2007 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterDaemon.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterDaemon.java index ef21cb930132..1cb9304ea95a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterDaemon.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShooterDaemon.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotClient.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotClient.java index 212fd0716e61..34f6baed7509 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotClient.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotClient.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotRemoteComponent.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotRemoteComponent.java index bd448ca451ec..b6cd40de208d 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotRemoteComponent.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotRemoteComponent.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotTreeModel.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotTreeModel.java index 72c66e939560..dfaf350ede9b 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotTreeModel.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapShotTreeModel.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapshotContext.java b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapshotContext.java index b657fe9d0291..20532c53b805 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapshotContext.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/snapShooter/SnapshotContext.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.snapShooter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanProperty.java index cf2ba781e2ac..39061e982bc5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import org.jetbrains.annotations.NonNls; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyListCellRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyListCellRenderer.java index 8f641bdcf05c..98fde0fecaf5 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyListCellRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyListCellRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ui.ColoredListCellRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellEditor.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellEditor.java index 715feb9a5fe4..7c4a75bd7e3f 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellEditor.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellEditor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import javax.swing.*; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellRenderer.java index 270ac16a5c82..7384983de194 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanPropertyTableCellRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ui.ColoredTableCellRenderer; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanStep.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanStep.java index da1da42171b0..e69a41301e44 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanStep.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BeanStep.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ide.util.PackageChooserDialog; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindCompositeStep.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindCompositeStep.java index 8854396e59e6..aba3db8e6a5c 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindCompositeStep.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindCompositeStep.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ide.wizard.CommitStepException; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToExistingBeanStep.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToExistingBeanStep.java index dc8e680e6cfc..563ef10c90da 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToExistingBeanStep.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToExistingBeanStep.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ide.wizard.StepAdapter; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToNewBeanStep.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToNewBeanStep.java index 644b10c20e9b..068bf0f1fed7 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToNewBeanStep.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/BindToNewBeanStep.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.ide.wizard.CommitStepException; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/DataBindingWizard.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/DataBindingWizard.java index f662723b181e..08b9afeac463 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/DataBindingWizard.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/DataBindingWizard.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.CommonBundle; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty.java index 13f76777b398..db7e6622b8df 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.uiDesigner.lw.LwComponent; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty2BeanProperty.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty2BeanProperty.java index 4b0b16652e6b..c73c4eaa8fe6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty2BeanProperty.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormProperty2BeanProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import org.jetbrains.annotations.NotNull; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormPropertyTableCellRenderer.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormPropertyTableCellRenderer.java index e93a7e4bbaaf..4fde5a11480a 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormPropertyTableCellRenderer.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/FormPropertyTableCellRenderer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/Generator.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/Generator.java index 62a41a3def6c..610f6cb668ee 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/Generator.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/Generator.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/WizardData.java b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/WizardData.java index 1427f662fae6..0e6a05be54d6 100644 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/WizardData.java +++ b/plugins/ui-designer/src/com/intellij/uiDesigner/wizard/WizardData.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.wizard; import com.intellij.openapi.diagnostic.Logger; diff --git a/plugins/ui-designer/testData/BindingTest.java b/plugins/ui-designer/testData/BindingTest.java index 77941545f52d..181687d6ad16 100644 --- a/plugins/ui-designer/testData/BindingTest.java +++ b/plugins/ui-designer/testData/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/ChainedConstructorTest.java b/plugins/ui-designer/testData/ChainedConstructorTest.java index afc61b5397a5..57960f4192a7 100644 --- a/plugins/ui-designer/testData/ChainedConstructorTest.java +++ b/plugins/ui-designer/testData/ChainedConstructorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; import java.awt.*; diff --git a/plugins/ui-designer/testData/ConditionalMethodCallTest.java b/plugins/ui-designer/testData/ConditionalMethodCallTest.java index e235bd9e93f8..84bbd86ca12e 100644 --- a/plugins/ui-designer/testData/ConditionalMethodCallTest.java +++ b/plugins/ui-designer/testData/ConditionalMethodCallTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; import java.awt.*; diff --git a/plugins/ui-designer/testData/FieldReferenceTest.java b/plugins/ui-designer/testData/FieldReferenceTest.java index 94b3cc95829d..ce54ca7944aa 100644 --- a/plugins/ui-designer/testData/FieldReferenceTest.java +++ b/plugins/ui-designer/testData/FieldReferenceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; import java.awt.*; diff --git a/plugins/ui-designer/testData/MethodCallInSuperTest.java b/plugins/ui-designer/testData/MethodCallInSuperTest.java index 06e2332fcb04..eaab7412e541 100644 --- a/plugins/ui-designer/testData/MethodCallInSuperTest.java +++ b/plugins/ui-designer/testData/MethodCallInSuperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; import java.awt.*; diff --git a/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Embedded.java b/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Embedded.java index ea3e44e971a7..712924bf659d 100644 --- a/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Embedded.java +++ b/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Embedded.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; /** diff --git a/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Main.java b/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Main.java index f876783b90ac..3155ea209d67 100644 --- a/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Main.java +++ b/plugins/ui-designer/testData/formEmbedding/Ideadev14081/Main.java @@ -1,4 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; diff --git a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class1.java b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class1.java index 9fc5f3f76d92..514e7213495d 100644 --- a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class1.java +++ b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.package1; public class Class1 { diff --git a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class2.java b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class2.java index 00c893c7578e..f2476298162a 100644 --- a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class2.java +++ b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class2.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.package1; public class Class2 { diff --git a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class4.java b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class4.java index 73eeb93a4ffc..c20352cec0a3 100644 --- a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class4.java +++ b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Class4.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.package1; public Class4 { diff --git a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Form1.java b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Form1.java index 24fb0ad49957..976d825bfd7a 100644 --- a/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Form1.java +++ b/plugins/ui-designer/testData/projectView/standardProviders/src/com/package1/Form1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.package1; public class Form1 { diff --git a/plugins/ui-designer/testData/renameUIRelated/renameBoundField/after/UIClass.java b/plugins/ui-designer/testData/renameUIRelated/renameBoundField/after/UIClass.java index 0eacfbbf4449..9c0723b41fa9 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameBoundField/after/UIClass.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameBoundField/after/UIClass.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class UIClass { diff --git a/plugins/ui-designer/testData/renameUIRelated/renameBoundField/before/UIClass.java b/plugins/ui-designer/testData/renameUIRelated/renameBoundField/before/UIClass.java index 2ce6cfb8dfbe..b0e10dd47367 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameBoundField/before/UIClass.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameBoundField/before/UIClass.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class UIClass { diff --git a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/CustomComponent.java b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/CustomComponent.java index 19858223e605..9fae5e257eb1 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/CustomComponent.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/CustomComponent.java @@ -1,4 +1,19 @@ -public class CustomComponent extends JLabel +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ +public class CustomComponent extends JLabel { private PropEnum e; public PropEnum getE() { return e; } diff --git a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/PropEnum.java b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/PropEnum.java index 2cf18a68cfde..f98330534c9c 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/PropEnum.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/after/PropEnum.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public enum PropEnum { valueA, newValueB } diff --git a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/CustomComponent.java b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/CustomComponent.java index 19858223e605..9fae5e257eb1 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/CustomComponent.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/CustomComponent.java @@ -1,4 +1,19 @@ -public class CustomComponent extends JLabel +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ +public class CustomComponent extends JLabel { private PropEnum e; public PropEnum getE() { return e; } diff --git a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/PropEnum.java b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/PropEnum.java index 3afdd63b70bb..c05e862e86d5 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/PropEnum.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameEnumConstant/before/PropEnum.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ public enum PropEnum { valueA, valueB } diff --git a/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/after/p1/Form1.java b/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/after/p1/Form1.java index 0e8ba3fb6732..16e334add351 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/after/p1/Form1.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/after/p1/Form1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p1; import javax.swing.*; diff --git a/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/before/p1/Form1.java b/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/before/p1/Form1.java index 0e8ba3fb6732..16e334add351 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/before/p1/Form1.java +++ b/plugins/ui-designer/testData/renameUIRelated/renameNestedForm/before/p1/Form1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 p1; import javax.swing.*; diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackage/after/org/UIClass.java b/plugins/ui-designer/testData/renameUIRelated/renamePackage/after/org/UIClass.java index 10c5402105db..c3c1e373cde5 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackage/after/org/UIClass.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackage/after/org/UIClass.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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; public class UIClass { diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackage/before/gov/UIClass.java b/plugins/ui-designer/testData/renameUIRelated/renamePackage/before/gov/UIClass.java index 5599296d92a6..5189b5eece83 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackage/before/gov/UIClass.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackage/before/gov/UIClass.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 gov; public class UIClass { diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/after/org/withForms/child/Form1.java b/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/after/org/withForms/child/Form1.java index e737fb0e9889..057da2448605 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/after/org/withForms/child/Form1.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/after/org/withForms/child/Form1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.withForms.child; import javax.swing.*; diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/before/org/withoutForms/child/Form1.java b/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/before/org/withoutForms/child/Form1.java index 4872e2b53c94..9124fd93b6d5 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/before/org/withoutForms/child/Form1.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackageNested/before/org/withoutForms/child/Form1.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.withoutForms.child; import javax.swing.*; diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/after/org/withForms/child/MyComponent.java b/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/after/org/withForms/child/MyComponent.java index a4523e9d38e9..71952dda5369 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/after/org/withForms/child/MyComponent.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/after/org/withForms/child/MyComponent.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.withForms.child; import javax.swing.*; diff --git a/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/before/org/withoutForms/child/MyComponent.java b/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/before/org/withoutForms/child/MyComponent.java index 3662f60e8442..c49ffbca6721 100644 --- a/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/before/org/withoutForms/child/MyComponent.java +++ b/plugins/ui-designer/testData/renameUIRelated/renamePackageWithComponentClass/before/org/withoutForms/child/MyComponent.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.withoutForms.child; import javax.swing.*; diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java index 61a1e58eafc5..1257ef8c844d 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java.after index 1514b8bb4ccf..145fd84c62f0 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTestAfter.java b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTestAfter.java index 1514b8bb4ccf..145fd84c62f0 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTestAfter.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/constructorsCallingThis/BindingTestAfter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java index 759c2bcb2a1f..09a964051f2a 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java.after index 5f1e4560238c..008fb203ebdd 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java index cdef33431ccc..78eb3a2943fb 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java.after index 6ef673bbd4d6..b8cf878f00ed 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/customCreateComponent/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java index 48676d242eaa..bb00046b7e8a 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java.after index 96e96467337b..be183224b447 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/duplicateSetupCall/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java index 5f0681ffd521..50bb0856673e 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java.after index 1cabeb501b1a..99f81ce27d63 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/methodCallInConstructor/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java index 876f9b2114b4..7ee26d3e08bc 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java.after index d1d13a2cb46d..46fd2a097bcc 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/multipleConstructors/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java index 77941545f52d..181687d6ad16 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java.after index be8d6aa82ba9..837ef700fe8e 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/simple/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java b/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java index 6b13805cb1f7..0c6cf8831cc0 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java +++ b/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java.after b/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java.after index bb08c84cc67e..0dbde22d30bc 100644 --- a/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java.after +++ b/plugins/ui-designer/testData/sourceCodeGenerator/superCall/BindingTest.java.after @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ import javax.swing.*; public class BindingTest { diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/GridChangeUtilTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/GridChangeUtilTest.java index 4135b19b402f..28e201dc1f76 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/GridChangeUtilTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/GridChangeUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/TextDifferTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/TextDifferTest.java index 158cbbefe171..faad6a42126c 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/TextDifferTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/TextDifferTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner; import junit.framework.TestCase; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormEnumUsageTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormEnumUsageTest.java index 1972fa17cca9..51efe3403f97 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormEnumUsageTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormEnumUsageTest.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormPropertyUsageTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormPropertyUsageTest.java index 4e1193ab71c7..c62608b95b7f 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormPropertyUsageTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/FormPropertyUsageTest.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/RenameUIRelatedTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/RenameUIRelatedTest.java index b55ffb3712c0..79ca07d2bc3a 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/RenameUIRelatedTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/binding/RenameUIRelatedTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.binding; import com.intellij.openapi.roots.LanguageLevelProjectExtension; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/core/AsmCodeGeneratorTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/core/AsmCodeGeneratorTest.java index 974715b67585..43478a25d79d 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/core/AsmCodeGeneratorTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/core/AsmCodeGeneratorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.core; import com.intellij.openapi.application.PluginPathManager; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/make/FormSourceCodeGeneratorTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/make/FormSourceCodeGeneratorTest.java index 683f9c1eefbe..d89398ebdb69 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/make/FormSourceCodeGeneratorTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/make/FormSourceCodeGeneratorTest.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2007 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.make; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProviderTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProviderTest.java index 66a28496f44a..b01a9a5f232b 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProviderTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/projectView/FormMergerTreeStructureProviderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.projectView; import com.intellij.ide.projectView.impl.AbstractProjectViewPSIPane; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/GridInsertLocationTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/GridInsertLocationTest.java index bb0edeb8e0a8..1ea682f36e3c 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/GridInsertLocationTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/GridInsertLocationTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; import com.intellij.uiDesigner.core.GridConstraints; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadFormLayoutManagerTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadFormLayoutManagerTest.java index de742b56da46..68e1e99d468d 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadFormLayoutManagerTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadFormLayoutManagerTest.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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 com.intellij.uiDesigner.radComponents; diff --git a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManagerTest.java b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManagerTest.java index 7bf244f893d5..0db259a6bf0d 100644 --- a/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManagerTest.java +++ b/plugins/ui-designer/testSrc/com/intellij/uiDesigner/radComponents/RadGridBagLayoutManagerTest.java @@ -1,5 +1,17 @@ /* - * Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. */ /* diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/XPathColorSettingsPage.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/XPathColorSettingsPage.java index 2dc40d3dd625..491ac8dd250d 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/XPathColorSettingsPage.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/XPathColorSettingsPage.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: sweinreuter diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/_XPathLexer.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/_XPathLexer.java index 004947647941..2188dbc9f049 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/_XPathLexer.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/_XPathLexer.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* The following code was generated by JFlex 1.4.1 on 20.08.07 15:46 */ /* It's an automatically generated code. Do not modify it. */ diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/context/XsltContextProviderExtension.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/context/XsltContextProviderExtension.java index 06cde605e72b..f5c502a4dbcc 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/context/XsltContextProviderExtension.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/context/XsltContextProviderExtension.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt.context; import com.intellij.psi.PsiElement; diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIconProvider.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIconProvider.java index 13924aa90aec..8d046a3f4919 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIconProvider.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIconProvider.java @@ -1,6 +1,17 @@ /* - * Copyright (c) 2000-2005 by JetBrains s.r.o. All Rights Reserved. - * Use is subject to license terms. + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt.impl; diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIncludeProvider.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIncludeProvider.java index 46945621f773..89418e949291 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIncludeProvider.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltIncludeProvider.java @@ -1,17 +1,17 @@ /* * Copyright 2000-2009 JetBrains s.r.o. * - * Licensed 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 + * Licensed 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 + * 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. + * 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.intellij.lang.xpath.xslt.impl; diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltReferenceContributor.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltReferenceContributor.java index 2629ed1a3459..5d9d526aa83f 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltReferenceContributor.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltReferenceContributor.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt.impl; import com.intellij.patterns.PlatformPatterns; diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltTreeStructureProvider.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltTreeStructureProvider.java index 5a052d4bbd79..ffbcdeb800a8 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltTreeStructureProvider.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/impl/XsltTreeStructureProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt.impl; import com.intellij.ide.projectView.PresentationData; diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/CustomRegexpFilter.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/CustomRegexpFilter.java index 1b5211c39a00..a7e3da196920 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/CustomRegexpFilter.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/CustomRegexpFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2005 JetBrains s.r.o. + * Copyright 2000-2009 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/ReadProcessThread.java b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/ReadProcessThread.java index 76bc4ebc03dc..af5b4412c8e9 100644 --- a/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/ReadProcessThread.java +++ b/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/run/ReadProcessThread.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2005 JetBrains s.r.o. + * Copyright 2000-2009 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/TestBase.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/TestBase.java index d92550e135cf..b86a49810794 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/TestBase.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/TestBase.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath; import com.intellij.openapi.application.PluginPathManager; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathCompletionTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathCompletionTest.java index 90e1faf5c665..28a9e0fc8f37 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathCompletionTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathCompletionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath; public class XPathCompletionTest extends TestBase { diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathHighlightingTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathHighlightingTest.java index 630af21f28cb..51f3374bc078 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathHighlightingTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/XPathHighlightingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath; import com.intellij.util.ArrayUtil; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltBasicTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltBasicTest.java index 79ab46485a8b..21fe8a463250 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltBasicTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltBasicTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt; import com.intellij.psi.impl.PsiFileEx; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltCompletionTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltCompletionTest.java index d740b0187778..dc7e9b487483 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltCompletionTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltCompletionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt; import org.intellij.lang.xpath.TestBase; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltHighlightingTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltHighlightingTest.java index eb9fe399eeeb..23a96b54bccc 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltHighlightingTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltHighlightingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt; import com.intellij.codeHighlighting.TextEditorHighlightingPass; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltRefactoringTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltRefactoringTest.java index d1447ebbb9eb..6d01b7505d61 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltRefactoringTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltRefactoringTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt; import org.intellij.lang.xpath.TestBase; diff --git a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltResolveTest.java b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltResolveTest.java index 44c8ed904762..86fcf1f72f7e 100644 --- a/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltResolveTest.java +++ b/plugins/xpath/xpath-lang/test/org/intellij/lang/xpath/xslt/XsltResolveTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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.intellij.lang.xpath.xslt; import org.intellij.lang.xpath.TestBase; diff --git a/plugins/xpath/xpath-view/src/org/intellij/plugins/xpathView/util/CachedVariableContext.java b/plugins/xpath/xpath-view/src/org/intellij/plugins/xpathView/util/CachedVariableContext.java index 64f98a9f0c26..0cba65689283 100644 --- a/plugins/xpath/xpath-view/src/org/intellij/plugins/xpathView/util/CachedVariableContext.java +++ b/plugins/xpath/xpath-view/src/org/intellij/plugins/xpathView/util/CachedVariableContext.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * Licensed 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. + */ + /* * Created by IntelliJ IDEA. * User: sweinreuter