org.joinedworkz.common.adapter.ComponentResourcesAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-base Show documentation
Show all versions of common-base Show documentation
DSL based modeling framework - facilities common base
package org.joinedworkz.common.adapter;
import java.util.Set;
import org.eclipse.xtend.lib.annotations.Accessors;
import org.eclipse.xtext.xbase.lib.Pure;
import org.joinedworkz.core.model.CmnAdapter;
import org.joinedworkz.core.model.CmnResource;
@Accessors
@SuppressWarnings("all")
public class ComponentResourcesAdapter implements CmnAdapter {
private Set resourcesForApi;
@Pure
public Set getResourcesForApi() {
return this.resourcesForApi;
}
public void setResourcesForApi(final Set resourcesForApi) {
this.resourcesForApi = resourcesForApi;
}
}