-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[699] Introduce an interface to persist RepresentationMetadata
Bug: #699 Signed-off-by: Stéphane Bégaudeau <[email protected]>
- Loading branch information
1 parent
4df13d6
commit da7072e
Showing
2 changed files
with
41 additions
and
0 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
40 changes: 40 additions & 0 deletions
40
...ava/org/eclipse/sirius/components/core/api/IRepresentationMetadataPersistenceService.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,40 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2022 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.core.api; | ||
|
||
import org.eclipse.sirius.components.core.RepresentationMetadata; | ||
|
||
/** | ||
* Used to persist representation metadata. | ||
* | ||
* @author sbegaudeau | ||
*/ | ||
public interface IRepresentationMetadataPersistenceService { | ||
|
||
void save(IEditingContext editingContext, RepresentationMetadata representationMetadata); | ||
|
||
/** | ||
* Implementation which does nothing, used for mocks in unit tests. | ||
* | ||
* @author sbegaudeau | ||
*/ | ||
class NoOp implements IRepresentationMetadataPersistenceService { | ||
|
||
@Override | ||
public void save(IEditingContext editingContext, RepresentationMetadata representationMetadata) { | ||
// Do nothing | ||
} | ||
|
||
} | ||
|
||
} |