-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first restriction based on properites
- Restrict Installed Apps to be hidden - Restrict Bookmarks to be hidden (reference #65)
- Loading branch information
1 parent
2141edb
commit 2b395ea
Showing
7 changed files
with
163 additions
and
6 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
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
90 changes: 90 additions & 0 deletions
90
Super.Human.Portal_Royale/src/net/apacheRoyaleTemplatedApp/model/vo/DisplayVO.as
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,90 @@ | ||
package model.vo | ||
{ | ||
[Bindable] | ||
public dynamic class DisplayVO | ||
{ | ||
private var _additionalGenesis:Boolean; | ||
|
||
public function get additionalGenesis():Boolean | ||
{ | ||
return _additionalGenesis; | ||
} | ||
|
||
public function set additionalGenesis(value:Boolean):void | ||
{ | ||
_additionalGenesis = value; | ||
} | ||
|
||
private var _browseMyServer:Boolean; | ||
|
||
public function get browseMyServer():Boolean | ||
{ | ||
return _browseMyServer; | ||
} | ||
|
||
public function set browseMyServer(value:Boolean):void | ||
{ | ||
_browseMyServer = value; | ||
} | ||
|
||
private var _documentation:Boolean; | ||
|
||
public function get documentation():Boolean | ||
{ | ||
return _documentation; | ||
} | ||
|
||
public function set documentation(value:Boolean):void | ||
{ | ||
_documentation = value; | ||
} | ||
|
||
private var _installApps:Boolean; | ||
|
||
public function get installApps():Boolean | ||
{ | ||
return _installApps; | ||
} | ||
|
||
public function set installApps(value:Boolean):void | ||
{ | ||
_installApps = value; | ||
} | ||
|
||
private var _manageBookmarks:Boolean; | ||
|
||
public function get manageBookmarks():Boolean | ||
{ | ||
return _manageBookmarks; | ||
} | ||
|
||
public function set manageBookmarks(value:Boolean):void | ||
{ | ||
_manageBookmarks = value; | ||
} | ||
|
||
private var _viewBookmarks:Boolean; | ||
|
||
public function get viewBookmarks():Boolean | ||
{ | ||
return _viewBookmarks; | ||
} | ||
|
||
public function set viewBookmarks(value:Boolean):void | ||
{ | ||
_viewBookmarks = value; | ||
} | ||
|
||
private var _viewInstalledApps:Boolean; | ||
|
||
public function get viewInstalledApps():Boolean | ||
{ | ||
return _viewInstalledApps; | ||
} | ||
|
||
public function set viewInstalledApps(value:Boolean):void | ||
{ | ||
_viewInstalledApps = value; | ||
} | ||
} | ||
} |
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