Package com.sun.syndication.feed.impl

Examples of com.sun.syndication.feed.impl.ObjectBean


  private Object lastModified;
  private String eTag;
  private SyndFeed syndFeed;

    public SyndFeedInfo() {
        _objBean = new ObjectBean(this.getClass(),this);
    }
View Full Code Here


     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public SyndContentImpl() {
        _objBean = new ObjectBean(SyndContent.class, this);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public SyndImageImpl() {
        _objBean = new ObjectBean(SyndImage.class, this);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public DCModuleImpl() {
        _objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public DCSubjectImpl() {
        _objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public ModuleImpl() {
        _objBean = new ObjectBean(ModuleImpl.class, this);
    }
View Full Code Here

     * <p>
     * @param uri URI of the module.
     *
     */
    protected ModuleImpl(Class beanClass, String uri) {
        _objBean = new ObjectBean(beanClass, this);
        _uri = uri;
    }
View Full Code Here

     * with extended interfaces.
     * <p>
     * @param subject the DC subject to wrap.
     */
    SyndCategoryImpl(DCSubject subject) {
        _objBean = new ObjectBean(SyndCategory.class, this);
        _subject = subject;
    }
View Full Code Here

     * @param convenienceProperties set containing the convenience properties of the SyndEntryImpl
     * (the are ignored during cloning, check CloneableBean for details).
     *
     */
    protected SyndFeedImpl(Class beanClass,Set convenienceProperties) {
        _objBean = new ObjectBean(beanClass,this,convenienceProperties);
    }
View Full Code Here

     * @param convenienceProperties set containing the convenience properties of the SyndEntryImpl
     * (the are ignored during cloning, check CloneableBean for details).
     *
     */
    protected SyndEntryImpl(Class beanClass,Set convenienceProperties) {
        _objBean = new ObjectBean(beanClass,this,convenienceProperties);
    }
View Full Code Here

TOP

Related Classes of com.sun.syndication.feed.impl.ObjectBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.