From a09a4a16bcfa2ec99d8d75ce940b93de3ef9d724 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 3 Aug 2018 10:34:10 +0200 Subject: [PATCH] Restore ProductiveMe copyrights (IDEA-CR-35682) --- .../launcher-generator/src/com/pme/exe/Bin.java | 17 ++++++++++++++++- .../src/com/pme/exe/ExeFormat.java | 17 +++++++++++++++++ .../src/com/pme/exe/ExeReader.java | 17 ++++++++++++++++- .../src/com/pme/exe/ImageDataDirectory.java | 17 ++++++++++++++++- .../src/com/pme/exe/ImageFileHeader.java | 17 ++++++++++++++++- .../src/com/pme/exe/ImageOptionalHeader.java | 17 ++++++++++++++++- .../src/com/pme/exe/ImageSectionHeader.java | 17 ++++++++++++++++- .../pme/exe/InvalidMsDosHeaderException.java | 17 ++++++++++++++++- .../src/com/pme/exe/MsDosHeader.java | 17 ++++++++++++++++- .../src/com/pme/exe/PeHeaderReader.java | 17 ++++++++++++++++- .../src/com/pme/exe/SectionReader.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/DataEntry.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/DirectoryEntry.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/EntryDescription.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/Level.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/LevelEntry.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/RawResource.java | 17 ++++++++++++++++- .../com/pme/exe/res/ResourceSectionReader.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/StringTable.java | 17 ++++++++++++++++- .../com/pme/exe/res/StringTableDirectory.java | 2 +- .../src/com/pme/exe/res/ValuesAdd.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/ValuesSub.java | 17 ++++++++++++++++- .../com/pme/exe/res/icon/GroupIconResource.java | 17 ++++++++++++++++- .../res/icon/GroupIconResourceDirectory.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/icon/IconDirectory.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/icon/IconFile.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/icon/IconHeader.java | 17 ++++++++++++++++- .../pme/exe/res/icon/IconResourceInjector.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/icon/RawBytes.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/vi/FixedFileInfo.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/vi/StringFileInfo.java | 17 ++++++++++++++++- .../com/pme/exe/res/vi/StringTableEntry.java | 17 ++++++++++++++++- .../src/com/pme/exe/res/vi/Var.java | 17 +++++++++++++++++ .../src/com/pme/exe/res/vi/VarFileInfo.java | 17 +++++++++++++++++ .../src/com/pme/exe/res/vi/VersionInfo.java | 2 +- .../src/com/pme/exe/res/vi/VersionInfoBin.java | 17 +++++++++++++++++ .../com/pme/exe/res/vi/VersionInfoFactory.java | 17 +++++++++++++++++ .../src/com/pme/launcher/LauncherGenerator.java | 17 ++++++++++++++++- .../com/pme/launcher/LauncherGeneratorMain.java | 2 +- .../src/com/pme/util/AttributeInfo.java | 2 +- .../src/com/pme/util/BitsUtil.java | 17 ++++++++++++++++- .../src/com/pme/util/ClassFile.java | 2 +- .../src/com/pme/util/ConstantPoolInfo.java | 2 +- .../src/com/pme/util/FieldInfo.java | 2 +- .../src/com/pme/util/MethodInfo.java | 2 +- .../com/pme/util/OffsetTrackingInputStream.java | 2 +- 46 files changed, 606 insertions(+), 41 deletions(-) diff --git a/tools/launcher-generator/src/com/pme/exe/Bin.java b/tools/launcher-generator/src/com/pme/exe/Bin.java index 845ef74477d8..8e9c99225e3a 100644 --- a/tools/launcher-generator/src/com/pme/exe/Bin.java +++ b/tools/launcher-generator/src/com/pme/exe/Bin.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/ExeFormat.java b/tools/launcher-generator/src/com/pme/exe/ExeFormat.java index 90a4c427eca6..e2d019c014a6 100644 --- a/tools/launcher-generator/src/com/pme/exe/ExeFormat.java +++ b/tools/launcher-generator/src/com/pme/exe/ExeFormat.java @@ -1,3 +1,20 @@ +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.pme.exe; /** diff --git a/tools/launcher-generator/src/com/pme/exe/ExeReader.java b/tools/launcher-generator/src/com/pme/exe/ExeReader.java index ed904577d141..e67da9c06437 100644 --- a/tools/launcher-generator/src/com/pme/exe/ExeReader.java +++ b/tools/launcher-generator/src/com/pme/exe/ExeReader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/ImageDataDirectory.java b/tools/launcher-generator/src/com/pme/exe/ImageDataDirectory.java index c62a98f3f40c..f1e88b860800 100644 --- a/tools/launcher-generator/src/com/pme/exe/ImageDataDirectory.java +++ b/tools/launcher-generator/src/com/pme/exe/ImageDataDirectory.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/ImageFileHeader.java b/tools/launcher-generator/src/com/pme/exe/ImageFileHeader.java index 57cd07182fe9..28e26963571e 100644 --- a/tools/launcher-generator/src/com/pme/exe/ImageFileHeader.java +++ b/tools/launcher-generator/src/com/pme/exe/ImageFileHeader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/ImageOptionalHeader.java b/tools/launcher-generator/src/com/pme/exe/ImageOptionalHeader.java index 04d9732b1eb8..cf6c0b82e0ac 100644 --- a/tools/launcher-generator/src/com/pme/exe/ImageOptionalHeader.java +++ b/tools/launcher-generator/src/com/pme/exe/ImageOptionalHeader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/ImageSectionHeader.java b/tools/launcher-generator/src/com/pme/exe/ImageSectionHeader.java index e2a6ed29e611..3a6924e851ae 100644 --- a/tools/launcher-generator/src/com/pme/exe/ImageSectionHeader.java +++ b/tools/launcher-generator/src/com/pme/exe/ImageSectionHeader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/InvalidMsDosHeaderException.java b/tools/launcher-generator/src/com/pme/exe/InvalidMsDosHeaderException.java index cad7327abf56..96952d4e1ee5 100644 --- a/tools/launcher-generator/src/com/pme/exe/InvalidMsDosHeaderException.java +++ b/tools/launcher-generator/src/com/pme/exe/InvalidMsDosHeaderException.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/MsDosHeader.java b/tools/launcher-generator/src/com/pme/exe/MsDosHeader.java index 1a2c86d954dd..e6502913c44c 100644 --- a/tools/launcher-generator/src/com/pme/exe/MsDosHeader.java +++ b/tools/launcher-generator/src/com/pme/exe/MsDosHeader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/PeHeaderReader.java b/tools/launcher-generator/src/com/pme/exe/PeHeaderReader.java index 97ad99062989..baefba967589 100644 --- a/tools/launcher-generator/src/com/pme/exe/PeHeaderReader.java +++ b/tools/launcher-generator/src/com/pme/exe/PeHeaderReader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/SectionReader.java b/tools/launcher-generator/src/com/pme/exe/SectionReader.java index 68f645830161..b59d959f95f7 100644 --- a/tools/launcher-generator/src/com/pme/exe/SectionReader.java +++ b/tools/launcher-generator/src/com/pme/exe/SectionReader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe; diff --git a/tools/launcher-generator/src/com/pme/exe/res/DataEntry.java b/tools/launcher-generator/src/com/pme/exe/res/DataEntry.java index 4b1c675eb668..105cefebd10a 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/DataEntry.java +++ b/tools/launcher-generator/src/com/pme/exe/res/DataEntry.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/DirectoryEntry.java b/tools/launcher-generator/src/com/pme/exe/res/DirectoryEntry.java index 2631abfddd87..06358778fe27 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/DirectoryEntry.java +++ b/tools/launcher-generator/src/com/pme/exe/res/DirectoryEntry.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/EntryDescription.java b/tools/launcher-generator/src/com/pme/exe/res/EntryDescription.java index 690fdddf553b..02ebd6ef4bfc 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/EntryDescription.java +++ b/tools/launcher-generator/src/com/pme/exe/res/EntryDescription.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/Level.java b/tools/launcher-generator/src/com/pme/exe/res/Level.java index c70172f6ee4e..750f24873a2b 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/Level.java +++ b/tools/launcher-generator/src/com/pme/exe/res/Level.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/LevelEntry.java b/tools/launcher-generator/src/com/pme/exe/res/LevelEntry.java index 5a40c25c5eff..ba39f3a53159 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/LevelEntry.java +++ b/tools/launcher-generator/src/com/pme/exe/res/LevelEntry.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/RawResource.java b/tools/launcher-generator/src/com/pme/exe/res/RawResource.java index 43606d6e3765..f8fde7dc32b1 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/RawResource.java +++ b/tools/launcher-generator/src/com/pme/exe/res/RawResource.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/ResourceSectionReader.java b/tools/launcher-generator/src/com/pme/exe/res/ResourceSectionReader.java index 20398968de04..258137c82ed1 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/ResourceSectionReader.java +++ b/tools/launcher-generator/src/com/pme/exe/res/ResourceSectionReader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/StringTable.java b/tools/launcher-generator/src/com/pme/exe/res/StringTable.java index ac36dce8dcf5..8df5ff6b40ce 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/StringTable.java +++ b/tools/launcher-generator/src/com/pme/exe/res/StringTable.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/StringTableDirectory.java b/tools/launcher-generator/src/com/pme/exe/res/StringTableDirectory.java index c1cea6e5ee5b..72df4d32f0ae 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/StringTableDirectory.java +++ b/tools/launcher-generator/src/com/pme/exe/res/StringTableDirectory.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/exe/res/ValuesAdd.java b/tools/launcher-generator/src/com/pme/exe/res/ValuesAdd.java index 5c128a033bdc..840b856bf0ff 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/ValuesAdd.java +++ b/tools/launcher-generator/src/com/pme/exe/res/ValuesAdd.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/ValuesSub.java b/tools/launcher-generator/src/com/pme/exe/res/ValuesSub.java index 9c0210265c04..67fad11ff2ba 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/ValuesSub.java +++ b/tools/launcher-generator/src/com/pme/exe/res/ValuesSub.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResource.java b/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResource.java index daaf67613fef..d062020c5685 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResource.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResource.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResourceDirectory.java b/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResourceDirectory.java index ca94ece06449..ce3d80686496 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResourceDirectory.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/GroupIconResourceDirectory.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/IconDirectory.java b/tools/launcher-generator/src/com/pme/exe/res/icon/IconDirectory.java index 295badb50318..cc9e2d71910d 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/IconDirectory.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/IconDirectory.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/IconFile.java b/tools/launcher-generator/src/com/pme/exe/res/icon/IconFile.java index 0819f5bb135d..b5f3e81bcdd3 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/IconFile.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/IconFile.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/IconHeader.java b/tools/launcher-generator/src/com/pme/exe/res/icon/IconHeader.java index 4476ff11e8bc..87a5e93dc7e1 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/IconHeader.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/IconHeader.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/IconResourceInjector.java b/tools/launcher-generator/src/com/pme/exe/res/icon/IconResourceInjector.java index d69154740d64..b0228fe098ed 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/IconResourceInjector.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/IconResourceInjector.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/icon/RawBytes.java b/tools/launcher-generator/src/com/pme/exe/res/icon/RawBytes.java index f3474acd6bc1..47326393d88c 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/icon/RawBytes.java +++ b/tools/launcher-generator/src/com/pme/exe/res/icon/RawBytes.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.icon; diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/FixedFileInfo.java b/tools/launcher-generator/src/com/pme/exe/res/vi/FixedFileInfo.java index f79fe13bb0c1..c5a1ff0f4569 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/FixedFileInfo.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/FixedFileInfo.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.vi; diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/StringFileInfo.java b/tools/launcher-generator/src/com/pme/exe/res/vi/StringFileInfo.java index 4c37b4604b2a..a61fadc8df96 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/StringFileInfo.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/StringFileInfo.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.vi; diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/StringTableEntry.java b/tools/launcher-generator/src/com/pme/exe/res/vi/StringTableEntry.java index 6db4a4f90b44..e28423f0d08d 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/StringTableEntry.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/StringTableEntry.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.exe.res.vi; diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/Var.java b/tools/launcher-generator/src/com/pme/exe/res/vi/Var.java index 9c7d8889e4fa..d1fd6724669c 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/Var.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/Var.java @@ -1,3 +1,20 @@ +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.pme.exe.res.vi; /** diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/VarFileInfo.java b/tools/launcher-generator/src/com/pme/exe/res/vi/VarFileInfo.java index f9f8cc584c44..abb4586e23f3 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/VarFileInfo.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/VarFileInfo.java @@ -1,3 +1,20 @@ +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.pme.exe.res.vi; /** diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfo.java b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfo.java index b30dcac07152..aa8d6fbd172c 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfo.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfo.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoBin.java b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoBin.java index c78fb134cc1f..8e8e324510b5 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoBin.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoBin.java @@ -1,3 +1,20 @@ +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.pme.exe.res.vi; import com.pme.exe.Bin; diff --git a/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoFactory.java b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoFactory.java index 6253b2760c33..d10317f3abbb 100644 --- a/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoFactory.java +++ b/tools/launcher-generator/src/com/pme/exe/res/vi/VersionInfoFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.pme.exe.res.vi; /** diff --git a/tools/launcher-generator/src/com/pme/launcher/LauncherGenerator.java b/tools/launcher-generator/src/com/pme/launcher/LauncherGenerator.java index 8eff57d984ed..dd972a9bf17e 100644 --- a/tools/launcher-generator/src/com/pme/launcher/LauncherGenerator.java +++ b/tools/launcher-generator/src/com/pme/launcher/LauncherGenerator.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.launcher; diff --git a/tools/launcher-generator/src/com/pme/launcher/LauncherGeneratorMain.java b/tools/launcher-generator/src/com/pme/launcher/LauncherGeneratorMain.java index b842d48dedd9..bf60267cf2c4 100644 --- a/tools/launcher-generator/src/com/pme/launcher/LauncherGeneratorMain.java +++ b/tools/launcher-generator/src/com/pme/launcher/LauncherGeneratorMain.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/AttributeInfo.java b/tools/launcher-generator/src/com/pme/util/AttributeInfo.java index b6706e975fac..e3cfb5ee2b63 100644 --- a/tools/launcher-generator/src/com/pme/util/AttributeInfo.java +++ b/tools/launcher-generator/src/com/pme/util/AttributeInfo.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/BitsUtil.java b/tools/launcher-generator/src/com/pme/util/BitsUtil.java index 7d298c399a57..5173129ef1d9 100644 --- a/tools/launcher-generator/src/com/pme/util/BitsUtil.java +++ b/tools/launcher-generator/src/com/pme/util/BitsUtil.java @@ -1,4 +1,19 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +/* + * Copyright 2006 ProductiveMe Inc. + * Copyright 2013-2018 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.pme.util; diff --git a/tools/launcher-generator/src/com/pme/util/ClassFile.java b/tools/launcher-generator/src/com/pme/util/ClassFile.java index dadba339a0f0..6707661f25f1 100644 --- a/tools/launcher-generator/src/com/pme/util/ClassFile.java +++ b/tools/launcher-generator/src/com/pme/util/ClassFile.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/ConstantPoolInfo.java b/tools/launcher-generator/src/com/pme/util/ConstantPoolInfo.java index fa28fa05e34f..45aa4389fe1b 100644 --- a/tools/launcher-generator/src/com/pme/util/ConstantPoolInfo.java +++ b/tools/launcher-generator/src/com/pme/util/ConstantPoolInfo.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/FieldInfo.java b/tools/launcher-generator/src/com/pme/util/FieldInfo.java index 64703311ec6a..8f8f31434ef8 100644 --- a/tools/launcher-generator/src/com/pme/util/FieldInfo.java +++ b/tools/launcher-generator/src/com/pme/util/FieldInfo.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/MethodInfo.java b/tools/launcher-generator/src/com/pme/util/MethodInfo.java index 1fea3e92ba9b..2c40f844d0b5 100644 --- a/tools/launcher-generator/src/com/pme/util/MethodInfo.java +++ b/tools/launcher-generator/src/com/pme/util/MethodInfo.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.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/tools/launcher-generator/src/com/pme/util/OffsetTrackingInputStream.java b/tools/launcher-generator/src/com/pme/util/OffsetTrackingInputStream.java index 10e55918b60d..fdc4e073e84f 100644 --- a/tools/launcher-generator/src/com/pme/util/OffsetTrackingInputStream.java +++ b/tools/launcher-generator/src/com/pme/util/OffsetTrackingInputStream.java @@ -1,6 +1,6 @@ /* * Copyright 2006 ProductiveMe Inc. - * Copyright 2013 JetBrains s.r.o. + * Copyright 2013-2018 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.