Java Doc for AccountingLineOverride.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » kfs » bo » 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 » ERP CRM Financial » Kuali Financial System » org.kuali.kfs.bo 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.kuali.kfs.bo.AccountingLineOverride

AccountingLineOverride
public class AccountingLineOverride (Code)
This class helps implement AccountingLine overrides. It is not persisted itself, but it simplifies working with the persisted codes. Instances break the code into components. Static methods help with the AccountingLine.

Inner Class :final public static class CODE
Inner Class :final public static class COMPONENT

Field Summary
final public static  ListREFRESH_FIELDS
     The names of the AccountingLine properties that the processForOutput() and determineNeededOverrides() methods use.


Method Summary
public static  AccountingLineOverridedetermineNeededOverrides(AccountingLine line)
     Determines what overrides the given line needs.
public  StringgetCode()
     Gets the code of this override.
public  booleanhasComponent(Integer component)
     Checks whether this override contains the given component.
public static  booleanisValidCode(String code)
     Returns whether the given String is a valid override code.
public static  booleanisValidComponentSet(Integer[] components)
     Returns whether the given Integers are a valid set of components.
public  booleanisValidMask(AccountingLineOverride mask)
     Returns whether this override, when masked by the given override, is valid.
public  AccountingLineOverridemask(AccountingLineOverride mask)
     Returns the AccountingLineOverride that has the components of this AccountingLineOverride minus any components not in the given mask.
public static  booleanneedsExpiredAccountOverride(Account account)
     Returns whether the given account needs an expired account override.
public static  booleanneedsNonFringAccountOverride(Account account)
     Returns whether the given account needs an expired account override.
public static  booleanneedsObjectBudgetOverride(Account account, ObjectCode objectCode)
    
public static  voidpopulateFromInput(AccountingLine line)
     On the given AccountingLine, converts override input checkboxes from a Struts Form into a persistable override code.
public static  voidprocessForOutput(AccountingLine line)
     Prepares the given AccountingLine in a Struts Action for display by a JSP.
public  StringtoString()
    
public static  AccountingLineOverridevalueOf(String code)
     Factory method from code.
public static  AccountingLineOverridevalueOf(Integer[] components)
     Factory method from components.

Field Detail
REFRESH_FIELDS
final public static List REFRESH_FIELDS(Code)
The names of the AccountingLine properties that the processForOutput() and determineNeededOverrides() methods use. Callers of those methods may need to refresh these fields from OJB.





Method Detail
determineNeededOverrides
public static AccountingLineOverride determineNeededOverrides(AccountingLine line)(Code)
Determines what overrides the given line needs.
Parameters:
  line - what overrides the given line needs.



getCode
public String getCode()(Code)
Gets the code of this override. the code of this override.



hasComponent
public boolean hasComponent(Integer component)(Code)
Checks whether this override contains the given component.
Parameters:
  component - whether this override contains the given component.



isValidCode
public static boolean isValidCode(String code)(Code)
Returns whether the given String is a valid override code.
Parameters:
  code - whether the given String is a valid override code.



isValidComponentSet
public static boolean isValidComponentSet(Integer[] components)(Code)
Returns whether the given Integers are a valid set of components. Some combinations of components are invalid and have no code defined.
Parameters:
  components - whether the given Integers are a valid set of components.



isValidMask
public boolean isValidMask(AccountingLineOverride mask)(Code)
Returns whether this override, when masked by the given override, is valid. Some combinations of components have no override code defined.
Parameters:
  mask - whether this override, when masked by the given override, is valid.



mask
public AccountingLineOverride mask(AccountingLineOverride mask)(Code)
Returns the AccountingLineOverride that has the components of this AccountingLineOverride minus any components not in the given mask. This is like &(a bit-wise and), if the components were bits.
Parameters:
  mask - the AccountingLineOverride that has the components of this AccountingLineOverride minus any components not in thegiven mask.
throws:
  IllegalArgumentException - if there is no such valid combination of components



needsExpiredAccountOverride
public static boolean needsExpiredAccountOverride(Account account)(Code)
Returns whether the given account needs an expired account override.
Parameters:
  account - whether the given account needs an expired account override.



needsNonFringAccountOverride
public static boolean needsNonFringAccountOverride(Account account)(Code)
Returns whether the given account needs an expired account override.
Parameters:
  account - whether the given account needs an expired account override.



needsObjectBudgetOverride
public static boolean needsObjectBudgetOverride(Account account, ObjectCode objectCode)(Code)
Returns whether the given object code needs an object budget override
Parameters:
  account - whether the given object code needs an object budget override



populateFromInput
public static void populateFromInput(AccountingLine line)(Code)
On the given AccountingLine, converts override input checkboxes from a Struts Form into a persistable override code.
Parameters:
  line -



processForOutput
public static void processForOutput(AccountingLine line)(Code)
Prepares the given AccountingLine in a Struts Action for display by a JSP. This means converting the override code to checkboxes for display and input, as well as analysing the accounting line and determining which override checkboxes are needed.
Parameters:
  line -



toString
public String toString()(Code)

See Also:   java.lang.Object.toString



valueOf
public static AccountingLineOverride valueOf(String code)(Code)
Factory method from code.
Parameters:
  code - the override code the AccountingLineOverride instance corresponding to the given code.
throws:
  IllegalArgumentException - if the given code is not valid



valueOf
public static AccountingLineOverride valueOf(Integer[] components)(Code)
Factory method from components.
Parameters:
  components - the override components, treated as a set the AccountingLineOverride instance corresponding to the given component set.
throws:
  IllegalArgumentException - if the given set of components is not valid



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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