1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-02-22 00:13:11 +02:00

G5V8DT-24189 При добавлении обработчика события или команды автоматически размещать его в соответствующей области

Copyright text change and style changes
This commit is contained in:
Nikita Kuznetsov 2023-10-17 09:38:46 +03:00
parent 1fe8e9da0a
commit a952272ae7
2 changed files with 26 additions and 8 deletions

View File

@ -1,6 +1,15 @@
/**
* Copyright (C) 2023, 1C
*/
/*******************************************************************************
* Copyright (C) 2023, 1C-Soft LLC and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* 1C-Soft LLC - initial API and implementation
*******************************************************************************/
package com.e1c.v8codestyle.internal.bsl.ui.services;
import java.util.HashMap;

View File

@ -1,6 +1,15 @@
/**
* Copyright (C) 2023, 1C
*/
/*******************************************************************************
* Copyright (C) 2023, 1C-Soft LLC and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* 1C-Soft LLC - initial API and implementation
*******************************************************************************/
package com.e1c.v8codestyle.internal.bsl.ui.services;
import java.util.HashMap;
@ -17,7 +26,7 @@ import com.e1c.v8codestyle.internal.bsl.ui.UiPlugin;
*
* @author Kuznetsov Nikita
*/
public class ModuleRegionInformation
public final class ModuleRegionInformation
{
private int startOffset;
private int endOffset;
@ -95,7 +104,7 @@ public class ModuleRegionInformation
*/
public boolean hasSuffixes()
{
return (suffixes != null);
return suffixes != null;
}
/**