Java Doc for Citation.java in  » ERP-CRM-Financial » sakai » org » sakaiproject » citation » api » 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 » sakai » org.sakaiproject.citation.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.sakaiproject.citation.api.Citation

Citation
public interface Citation (Code)




Method Summary
public  voidaddCustomUrl(String label, String url)
    
public  voidaddPropertyValue(String name, Object value)
    
public  voidexportRis(StringBuffer buffer)
    
public  MapgetCitationProperties()
     Access a mapping of name-value pairs for various bibliographic information about the resource. Ideally, the names will be expressed as URIs for standard tags representing nuggets of bibliographic metadata. Values will be strings in formats specified by the standards defining the property names.
public  ObjectgetCitationProperty(String name)
     Access a representation of the value(s) of a named property.
public  StringgetCreator()
    
public  StringgetCustomUrl(String id)
    
public  ListgetCustomUrlIds()
    
public  StringgetCustomUrlLabel(String id)
    
public  StringgetDisplayName()
     Access the brief "title" of the resource, which can be used to display the item in a list of items. The display name.
public  StringgetFirstAuthor()
    
public  StringgetId()
    
public  StringgetOpenurl()
    
public  StringgetOpenurlParameters()
    
public  StringgetSaveUrl(String collectionId)
    
public  SchemagetSchema()
    
public  StringgetSource()
    
public  booleanhasCustomUrls()
    
public  booleanhasPropertyValue(String fieldId)
    
public  voidimportFromRis(InputStream istream)
    
public  booleanisAdded()
    
public  booleanisMultivalued(String fieldId)
    
public  ListlistCitationProperties()
     Access a list of names of citation properties defined for this resource. The list of property names.
public  voidsetAdded(boolean added)
    
public  voidsetCitationProperty(String name, Object value)
    
public  voidsetDisplayName(String name)
    
public  voidsetSchema(Schema schema)
    
public  voidupdateCitationProperty(String name, List values)
     Replaces the current value(s) of a citation property.
public  voidupdateCustomUrl(String urlid, String label, String url)
    



Method Detail
addCustomUrl
public void addCustomUrl(String label, String url)(Code)

Parameters:
  label -
Parameters:
  url - A unique identifier for the URL and its label.



addPropertyValue
public void addPropertyValue(String name, Object value)(Code)

Parameters:
  name -
Parameters:
  value -



exportRis
public void exportRis(StringBuffer buffer) throws IOException(Code)
Write this citation in RIS format to an output stream
Parameters:
  buffer -
throws:
  IOException -



getCitationProperties
public Map getCitationProperties()(Code)
Access a mapping of name-value pairs for various bibliographic information about the resource. Ideally, the names will be expressed as URIs for standard tags representing nuggets of bibliographic metadata. Values will be strings in formats specified by the standards defining the property names. For example if the name is a URI referencing a standard format for a "publication_date" and the standard indicates that the value should be expressed as in xs:date format, the value should be expressed as a string representation of xs:date. The mapping of name-value pairs. The mapping may be empty, but it should never be null.



getCitationProperty
public Object getCitationProperty(String name)(Code)
Access a representation of the value(s) of a named property. If the property is multivalued, the object returned will be a (possibly empty) java.util.List. Otherwise it will be an Object of a type appropriate for the named property (usually a String or a Date). The value(s) must be of a type for which toString() is defined and returns a reasonable representation for use in a textual display of the citation.
Parameters:
  name - The name of the property for which a value is to be returned. A representation of the value(s) of the named property. May be an empty String ("") if the property is not defined.



getCreator
public String getCreator()(Code)



getCustomUrl
public String getCustomUrl(String id) throws IdUnusedException(Code)

Parameters:
  id -



getCustomUrlIds
public List getCustomUrlIds()(Code)



getCustomUrlLabel
public String getCustomUrlLabel(String id) throws IdUnusedException(Code)

Parameters:
  id -
throws:
  IdUnusedException -



getDisplayName
public String getDisplayName()(Code)
Access the brief "title" of the resource, which can be used to display the item in a list of items. The display name.



getFirstAuthor
public String getFirstAuthor()(Code)



getId
public String getId()(Code)



getOpenurl
public String getOpenurl()(Code)



getOpenurlParameters
public String getOpenurlParameters()(Code)



getSaveUrl
public String getSaveUrl(String collectionId)(Code)



getSchema
public Schema getSchema()(Code)
Access the schema for the Citation th



getSource
public String getSource()(Code)



hasCustomUrls
public boolean hasCustomUrls()(Code)



hasPropertyValue
public boolean hasPropertyValue(String fieldId)(Code)



importFromRis
public void importFromRis(InputStream istream) throws IOException(Code)
Read this citation from an input stream in RIS format
Parameters:
  istream -
throws:
  IOException -



isAdded
public boolean isAdded()(Code)



isMultivalued
public boolean isMultivalued(String fieldId)(Code)

Parameters:
  fieldId -



listCitationProperties
public List listCitationProperties()(Code)
Access a list of names of citation properties defined for this resource. The list of property names. The list may be empty, but it should never be null.



setAdded
public void setAdded(boolean added)(Code)

Parameters:
  added -



setCitationProperty
public void setCitationProperty(String name, Object value)(Code)

Parameters:
  name -
Parameters:
  value -



setDisplayName
public void setDisplayName(String name)(Code)

Parameters:
  name -



setSchema
public void setSchema(Schema schema)(Code)

Parameters:
  schema -



updateCitationProperty
public void updateCitationProperty(String name, List values)(Code)
Replaces the current value(s) of a citation property. If the field identified by the parameter "name" is multivalued, the values in the list parameter "values" replace the current values. If the field is single valued, the first value in the list "values" replaces the current value. In either case, if the values parameter is null or empty, all current values are removed and no new values are added.
Parameters:
  name -
Parameters:
  values -



updateCustomUrl
public void updateCustomUrl(String urlid, String label, String url)(Code)

Parameters:
  urlid -
Parameters:
  label -
Parameters:
  url -



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