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

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

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

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.CmnField;

@Accessors
@SuppressWarnings("all")
public class KeyAdapter implements CmnAdapter {
  private final CmnField keyField;

  public KeyAdapter(final CmnField keyField) {
    super();
    this.keyField = keyField;
  }

  @Pure
  public CmnField getKeyField() {
    return this.keyField;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy