-
Notifications
You must be signed in to change notification settings - Fork 25
Типы значений в пропущенных на первом этапе местах. Добавление двухязычного хранения значений перечислений #524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ea2f232
1. использование новой версии common library
theshadowco e20d12d
убрал тестовую строку
theshadowco f02b0f0
fix potencial npe
theshadowco 80b0cd8
sq fixes
theshadowco 5a50594
sq fix
theshadowco 67d2fa5
sq & javadoc fixes
theshadowco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,25 @@ | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdclasses; | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdclasses; | ||
|
|
||
| import com.github._1c_syntax.bsl.reader.MDOReader; | ||
| import com.github._1c_syntax.bsl.types.MDOType; | ||
|
|
@@ -196,7 +196,7 @@ private Set<String> mdoTypeGroupNames() { | |
| && type != MDOType.EXTERNAL_DATA_PROCESSOR | ||
| && type != MDOType.UNKNOWN | ||
| ) | ||
| .map(MDOType::getGroupName) | ||
| .map(MDOType::groupName) | ||
| .collect(Collectors.toSet()); | ||
| } | ||
| } | ||
46 changes: 23 additions & 23 deletions
46
src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,37 +1,37 @@ | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdo; | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdo; | ||
|
|
||
| import com.github._1c_syntax.bsl.mdo.children.Dimension; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectCommand; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectForm; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectTemplate; | ||
| import com.github._1c_syntax.bsl.mdo.children.Resource; | ||
| import com.github._1c_syntax.bsl.mdo.support.MultiLanguageString; | ||
| import com.github._1c_syntax.bsl.mdo.support.ObjectBelonging; | ||
| import com.github._1c_syntax.bsl.mdo.support.RoleRight; | ||
| import com.github._1c_syntax.bsl.mdo.utils.LazyLoader; | ||
| import com.github._1c_syntax.bsl.support.SupportVariant; | ||
| import com.github._1c_syntax.bsl.types.MdoReference; | ||
| import com.github._1c_syntax.bsl.types.MultiLanguageString; | ||
| import com.github._1c_syntax.utils.Lazy; | ||
| import lombok.Builder; | ||
| import lombok.Builder.Default; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 23 additions & 23 deletions
46
src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,37 +1,37 @@ | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdo; | ||
| /* | ||
| * This file is a part of MDClasses. | ||
| * | ||
| * Copyright (c) 2019 - 2025 | ||
| * Tymko Oleg <[email protected]>, Maximov Valery <[email protected]> and contributors | ||
| * | ||
| * SPDX-License-Identifier: LGPL-3.0-or-later | ||
| * | ||
| * MDClasses is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU Lesser General Public | ||
| * License as published by the Free Software Foundation; either | ||
| * version 3.0 of the License, or (at your option) any later version. | ||
| * | ||
| * MDClasses is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * Lesser General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU Lesser General Public | ||
| * License along with MDClasses. | ||
| */ | ||
| package com.github._1c_syntax.bsl.mdo; | ||
|
|
||
| import com.github._1c_syntax.bsl.mdo.children.AccountingFlag; | ||
| import com.github._1c_syntax.bsl.mdo.children.ExtDimensionAccountingFlag; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectCommand; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectForm; | ||
| import com.github._1c_syntax.bsl.mdo.children.ObjectTemplate; | ||
| import com.github._1c_syntax.bsl.mdo.support.MultiLanguageString; | ||
| import com.github._1c_syntax.bsl.mdo.support.ObjectBelonging; | ||
| import com.github._1c_syntax.bsl.mdo.support.RoleRight; | ||
| import com.github._1c_syntax.bsl.mdo.utils.LazyLoader; | ||
| import com.github._1c_syntax.bsl.support.SupportVariant; | ||
| import com.github._1c_syntax.bsl.types.MdoReference; | ||
| import com.github._1c_syntax.bsl.types.MultiLanguageString; | ||
| import com.github._1c_syntax.utils.Lazy; | ||
| import lombok.Builder; | ||
| import lombok.Builder.Default; | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.