blob: 4d949614b7e61dddb41ebda9f257e0d74a6ec2dd [file] [log] [blame]
/*
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
*/
package org.eclipse.scout.rt.dataobject.fixture;
import javax.annotation.Generated;
import org.eclipse.scout.rt.dataobject.ContributesTo;
import org.eclipse.scout.rt.dataobject.DoEntity;
import org.eclipse.scout.rt.dataobject.DoValue;
import org.eclipse.scout.rt.dataobject.IDoEntityContribution;
import org.eclipse.scout.rt.dataobject.TypeName;
@TypeName("scout.SecondSimpleContributionFixture")
@ContributesTo(SimpleFixtureDo.class)
public final class SecondSimpleContributionFixtureDo extends DoEntity implements IDoEntityContribution {
public DoValue<String> secondValue() {
return doValue("secondValue");
}
/* **************************************************************************
* GENERATED CONVENIENCE METHODS
* *************************************************************************/
@Generated("DoConvenienceMethodsGenerator")
public SecondSimpleContributionFixtureDo withSecondValue(String secondValue) {
secondValue().set(secondValue);
return this;
}
@Generated("DoConvenienceMethodsGenerator")
public String getSecondValue() {
return secondValue().get();
}
}