org.jdesktop.beansbinding.ext.BeanAdapterProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swixml Show documentation
Show all versions of swixml Show documentation
GUI generating engine for Java applications
The newest version!
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*/
package org.jdesktop.beansbinding.ext;
/**
* @author sky
* @author Shannon Hickey
*/
public interface BeanAdapterProvider {
public abstract boolean providesAdapter(Class> type, String property);
public abstract Object createAdapter(Object source, String property);
public abstract Class> getAdapterClass(Class> type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy