Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java b/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java
index 88e7eaa4dd..6c11a7297a 100644
--- a/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java
+++ b/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/impl/RoleImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, 2016 Eike Stepper (Loehne, Germany) and others.
+ * Copyright (c) 2012, 2016, 2019 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -61,6 +61,7 @@ public class RoleImpl extends SecurityItemImpl implements Role
* <!-- end-user-doc -->
* @generated
*/
+ @Override
@SuppressWarnings("unchecked")
public EList<Assignee> getAssignees()
{
@@ -72,6 +73,7 @@ public class RoleImpl extends SecurityItemImpl implements Role
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public String getId()
{
return (String)eGet(SecurityPackage.Literals.ROLE__ID, true);
@@ -82,6 +84,7 @@ public class RoleImpl extends SecurityItemImpl implements Role
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public void setId(String newId)
{
eSet(SecurityPackage.Literals.ROLE__ID, newId);
@@ -92,6 +95,7 @@ public class RoleImpl extends SecurityItemImpl implements Role
* <!-- end-user-doc -->
* @generated
*/
+ @Override
@SuppressWarnings("unchecked")
public EList<Permission> getPermissions()
{

Back to the top