Java Doc for NavigationGroupInterface.java in  » J2EE » Sofia » com » salmonllc » gui » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Sofia » com.salmonllc.gui 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.salmonllc.gui.NavigationGroupInterface

NavigationGroupInterface
public interface NavigationGroupInterface (Code)
An interface of methods used to communicate to a group of items in a NavigationMenu Creation date: (8/23/01 10:03:52 AM)
author:
   : Fred Cahill




Method Summary
public  NavigationItemInterfaceaddItem(String submenu, String title, String href, String target, int horizPadding)
     Adds an item to a group in a navigation menu
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu.
public  voidcollapse()
     Collapses an expanded group.
public  voidcontract()
     Contracts an expanded group.
public  voidexpand()
     Expands a collapsed group.
public  StringgetHRef()
     Returns the HRef Link Associated with this Group.
public  StringgetImage()
     Returns the Image Associated with this Group.
public  NavigationItemInterface[]getItems()
     Returns the items within this Group.
public  intgetVertPadding()
     Returns the number of pixels of vertical padding for this Group in the menu.
public  booleangetVisible()
     Returns whether this Group is visible or not.
public  NavigationItemInterfaceinsertItemAt(String submenu, String title, String href, String target, int horizPadding, int iLocation)
     Inserts an item to a group in a navigation menu at specified location
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu.
Parameters:
  iLocation - int The index of the Item to insert before.
public  NavigationItemInterfaceinsertItemAt(String submenu, String title, String href, String target, int horizPadding, NavigationItemInterface niiInsertBefore)
     Inserts an item to a group in a navigation menu at specified location
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu.
Parameters:
  niiInsertBefore - com.salmonllc.gui.NavigationItemInterface The Item to insert before.
public  voidsetHRef(String sHRef)
    
public  voidsetImage(String sImage)
    
public  voidsetVertPadding(int iVertPadding)
    
public  voidsetVisible(boolean bVisible)
    



Method Detail
addItem
public NavigationItemInterface addItem(String submenu, String title, String href, String target, int horizPadding)(Code)
Adds an item to a group in a navigation menu
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu. NavigationItemInterface The item which was added.



collapse
public void collapse()(Code)
Collapses an expanded group.



contract
public void contract()(Code)
Contracts an expanded group.



expand
public void expand()(Code)
Expands a collapsed group.



getHRef
public String getHRef()(Code)
Returns the HRef Link Associated with this Group. String The Href of this group.



getImage
public String getImage()(Code)
Returns the Image Associated with this Group. String The Image of this group.



getItems
public NavigationItemInterface[] getItems()(Code)
Returns the items within this Group. NavigationItemInterface[] Array of items within this group.



getVertPadding
public int getVertPadding()(Code)
Returns the number of pixels of vertical padding for this Group in the menu. int The number of pixels of vertical padding.



getVisible
public boolean getVisible()(Code)
Returns whether this Group is visible or not. boolean Indicates if group is visible or not.



insertItemAt
public NavigationItemInterface insertItemAt(String submenu, String title, String href, String target, int horizPadding, int iLocation)(Code)
Inserts an item to a group in a navigation menu at specified location
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu.
Parameters:
  iLocation - int The index of the Item to insert before. NavigationItemInterface The item which was inserted.



insertItemAt
public NavigationItemInterface insertItemAt(String submenu, String title, String href, String target, int horizPadding, NavigationItemInterface niiInsertBefore)(Code)
Inserts an item to a group in a navigation menu at specified location
Parameters:
  submenu - String The name of a submenu if item is a submenu otherwise pass null
Parameters:
  title - String The text to appear for the item.
Parameters:
  href - String The href link of an item.
Parameters:
  target - String The target window for the href link of an item.
Parameters:
  horizPadding - int The number of pixels to pad the item by in the menu.
Parameters:
  niiInsertBefore - com.salmonllc.gui.NavigationItemInterface The Item to insert before. NavigationItemInterface The item which was inserted.



setHRef
public void setHRef(String sHRef)(Code)
Sets the href link for this group
Parameters:
  href - String The href link of the group.



setImage
public void setImage(String sImage)(Code)
Sets the image for this group
Parameters:
  sImage - String The Image of the group.



setVertPadding
public void setVertPadding(int iVertPadding)(Code)
Sets the number of pixels of vertical padding for this group
Parameters:
  iVertPadding - int The number of pixels of vertical padding.



setVisible
public void setVisible(boolean bVisible)(Code)
Sets whether this group is visible or not
Parameters:
  bVisible - boolean Indicates if group is visible or not.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.