All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.joinedworkz.common.adapter.ComponentResourcesAdapter Maven / Gradle / Ivy

There is a newer version: 1.3.46
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy