forked from eclipse-sirius/sirius-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[4101] Add loop tree item label element description
Bug: eclipse-sirius#4101 Signed-off-by: Jerome Gout <[email protected]>
- Loading branch information
1 parent
baf90ae
commit eb42458
Showing
23 changed files
with
1,085 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
77 changes: 77 additions & 0 deletions
77
...ius/components/view/builder/generated/tree/ForTreeItemLabelElementDescriptionBuilder.java
This file contains 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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023, 2024 Obeo. | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Obeo - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.sirius.components.view.builder.generated.tree; | ||
|
||
/** | ||
* Builder for ForTreeItemLabelElementDescriptionBuilder. | ||
* | ||
* @author BuilderGenerator | ||
* @generated | ||
*/ | ||
public class ForTreeItemLabelElementDescriptionBuilder { | ||
|
||
/** | ||
* Create instance org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription. | ||
* @generated | ||
*/ | ||
private org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription forTreeItemLabelElementDescription = org.eclipse.sirius.components.view.tree.TreeFactory.eINSTANCE.createForTreeItemLabelElementDescription(); | ||
|
||
/** | ||
* Return instance org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription. | ||
* @generated | ||
*/ | ||
protected org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription getForTreeItemLabelElementDescription() { | ||
return this.forTreeItemLabelElementDescription; | ||
} | ||
|
||
/** | ||
* Return instance org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription. | ||
* @generated | ||
*/ | ||
public org.eclipse.sirius.components.view.tree.ForTreeItemLabelElementDescription build() { | ||
return this.getForTreeItemLabelElementDescription(); | ||
} | ||
|
||
/** | ||
* Setter for Iterator. | ||
* | ||
* @generated | ||
*/ | ||
public ForTreeItemLabelElementDescriptionBuilder iterator(java.lang.String value) { | ||
this.getForTreeItemLabelElementDescription().setIterator(value); | ||
return this; | ||
} | ||
/** | ||
* Setter for IterableExpression. | ||
* | ||
* @generated | ||
*/ | ||
public ForTreeItemLabelElementDescriptionBuilder iterableExpression(java.lang.String value) { | ||
this.getForTreeItemLabelElementDescription().setIterableExpression(value); | ||
return this; | ||
} | ||
/** | ||
* Setter for Children. | ||
* | ||
* @generated | ||
*/ | ||
public ForTreeItemLabelElementDescriptionBuilder children(org.eclipse.sirius.components.view.tree.TreeItemLabelElementDescription ... values) { | ||
for (org.eclipse.sirius.components.view.tree.TreeItemLabelElementDescription value : values) { | ||
this.getForTreeItemLabelElementDescription().getChildren().add(value); | ||
} | ||
return this; | ||
} | ||
|
||
|
||
} | ||
|
This file contains 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 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
Oops, something went wrong.