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

com.arextest.diff.model.parse.MsgObjCombination Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.model.parse;

public class MsgObjCombination {

  private Object baseObj;

  private Object testObj;

  public MsgObjCombination() {
  }

  public MsgObjCombination(Object baseObj, Object testObj) {
    this.baseObj = baseObj;
    this.testObj = testObj;
  }

  public Object getBaseObj() {
    return baseObj;
  }

  public void setBaseObj(Object baseObj) {
    this.baseObj = baseObj;
  }

  public Object getTestObj() {
    return testObj;
  }

  public void setTestObj(Object testObj) {
    this.testObj = testObj;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy