-
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.
Bookmarks: Add UI for Add/Edit bookmarks
- Move Bookmark display part to separate component (reference #30)
- Loading branch information
1 parent
ce8404d
commit 6cb4b96
Showing
13 changed files
with
585 additions
and
82 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
18 changes: 18 additions & 0 deletions
18
Super.Human.Portal_Royale/src/net/apacheRoyaleTemplatedApp/interfaces/IEditBookmarkView.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,18 @@ | ||
package interfaces | ||
{ | ||
import org.apache.royale.events.IEventDispatcher; | ||
import model.vo.BookmarkVO; | ||
|
||
public interface IEditBookmarkView | ||
{ | ||
function get bookmark():BookmarkVO; | ||
function set bookmark(value:BookmarkVO):void; | ||
function get saveBookmark():IEventDispatcher; | ||
function get cancelBookmark():IEventDispatcher; | ||
function get titleBookmark():String; | ||
function set titleBookmark(value:String):void; | ||
function get typeBookmark():Object; | ||
function get browserForm():Object; | ||
function get databaseForm():Object; | ||
} | ||
} |
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.