Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted by netoneko ( 19 years ago )
package ru.naumen.core.metacards.providers;
/**
*
* @author kmaksimov
*
*/
public class MetaProvidersFactoryResource
{
IMetaProvidersFactory _factory;
Class _name;
public MetaProvidersFactoryResource(Class name, IMetaProvidersFactory factory)
{
_factory = factory;
_name = name;
}
public IMetaProvidersFactory getFactory()
{
return _factory;
}
public void setFactory (IMetaProvidersFactory factory)
{
_factory = factory;
}
public void setClassName (Class name)
{
_name = name;
}
public Class getClassName()
{
return _name;
}
}
Revise this Paste