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

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

There is a newer version: 1.3.46
Show newest version
package org.joinedworkz.common.adapter;

import java.util.List;
import org.eclipse.xtend.lib.annotations.Accessors;
import org.eclipse.xtext.xbase.lib.CollectionLiterals;
import org.eclipse.xtext.xbase.lib.Pure;
import org.joinedworkz.common.info.MergedResourceOperationInfo;
import org.joinedworkz.core.model.CmnAdapter;

@Accessors
@SuppressWarnings("all")
public class MergedOperationInfosAdapter implements CmnAdapter {
  private List operationInfos = CollectionLiterals.newArrayList();

  @Pure
  public List getOperationInfos() {
    return this.operationInfos;
  }

  public void setOperationInfos(final List operationInfos) {
    this.operationInfos = operationInfos;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy