BrightSide Workbench Full Report + Source Code
org.turro.elephant.zkoss.RoleMap Class Reference
Inheritance diagram for org.turro.elephant.zkoss.RoleMap:
Collaboration diagram for org.turro.elephant.zkoss.RoleMap:

Public Member Functions

 RoleMap (Application app)
 
int size ()
 
boolean isEmpty ()
 
boolean containsKey (Object key)
 
boolean containsValue (Object value)
 
Boolean get (Object key)
 
Boolean put (String key, Boolean value)
 
Boolean remove (Object key)
 
void putAll (Map<? extends String, ? extends Boolean > m)
 
void clear ()
 
Set< String > keySet ()
 
Collection< Boolean > values ()
 
Set< Entry< String, Boolean > > entrySet ()
 

Detailed Description

Constructor & Destructor Documentation

◆ RoleMap()

org.turro.elephant.zkoss.RoleMap.RoleMap ( Application  app)

Definition at line 34 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

34  {
35  this.app = app;
36  }

Member Function Documentation

◆ clear()

void org.turro.elephant.zkoss.RoleMap.clear ( )

Definition at line 79 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

79  {
80  throw new UnsupportedOperationException("Not supported yet.");
81  }

◆ containsKey()

boolean org.turro.elephant.zkoss.RoleMap.containsKey ( Object  key)

Definition at line 49 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

49  {
50  return app.hasAnyRoleKey((String) key);
51  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ containsValue()

boolean org.turro.elephant.zkoss.RoleMap.containsValue ( Object  value)

Definition at line 54 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

54  {
55  throw new UnsupportedOperationException("Not supported yet.");
56  }

◆ entrySet()

Set<Entry<String, Boolean> > org.turro.elephant.zkoss.RoleMap.entrySet ( )

Definition at line 94 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

94  {
95  throw new UnsupportedOperationException("Not supported yet.");
96  }

◆ get()

Boolean org.turro.elephant.zkoss.RoleMap.get ( Object  key)

Definition at line 59 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

59  {
60  return app.isInRole((String) key);
61  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.elephant.zkoss.RoleMap.isEmpty ( )

Definition at line 44 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

44  {
45  throw new UnsupportedOperationException("Not supported yet.");
46  }

◆ keySet()

Set<String> org.turro.elephant.zkoss.RoleMap.keySet ( )

Definition at line 84 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

84  {
85  throw new UnsupportedOperationException("Not supported yet.");
86  }

◆ put()

Boolean org.turro.elephant.zkoss.RoleMap.put ( String  key,
Boolean  value 
)

Definition at line 64 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

64  {
65  throw new UnsupportedOperationException("Not supported yet.");
66  }

◆ putAll()

void org.turro.elephant.zkoss.RoleMap.putAll ( Map<? extends String, ? extends Boolean >  m)

Definition at line 74 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

74  {
75  throw new UnsupportedOperationException("Not supported yet.");
76  }

◆ remove()

Boolean org.turro.elephant.zkoss.RoleMap.remove ( Object  key)

Definition at line 69 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

69  {
70  throw new UnsupportedOperationException("Not supported yet.");
71  }

◆ size()

int org.turro.elephant.zkoss.RoleMap.size ( )

Definition at line 39 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

39  {
40  throw new UnsupportedOperationException("Not supported yet.");
41  }

◆ values()

Collection<Boolean> org.turro.elephant.zkoss.RoleMap.values ( )

Definition at line 89 of file BrightSide/elephant-zkoss/src/main/java/org/turro/elephant/zkoss/RoleMap.java.

89  {
90  throw new UnsupportedOperationException("Not supported yet.");
91  }

The documentation for this class was generated from the following file: