blob: 767f98d9a3eccc4279f55e230eb984b1474aa483 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2019 CEA LIST and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink(CEA LIST) - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.codegen.java.types;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.examples.codegen.cgmodel.CGBoxExp;
import org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement;
import org.eclipse.ocl.examples.codegen.java.JavaLocalContext;
import org.eclipse.ocl.examples.codegen.java.JavaStream;
import org.eclipse.ocl.examples.codegen.java.JavaStream.SubStream;
import org.eclipse.ocl.pivot.ids.ElementId;
/**
* A BooleanPrimitiveDescriptor describes the boolean type and any associated irregular code generation patterns.
*/
public class BooleanPrimitiveDescriptor extends AbstractPrimitiveDescriptor
{
public BooleanPrimitiveDescriptor(@NonNull ElementId elementId) {
super(elementId, boolean.class, Boolean.class);
}
@Override
public @NonNull Boolean appendBox(@NonNull JavaStream js, @NonNull JavaLocalContext<@NonNull ?> localContext, @NonNull CGBoxExp cgBoxExp, @NonNull CGValuedElement unboxedValue) {
js.appendDeclaration(cgBoxExp);
js.append(" = ");
js.appendReferenceTo(unboxedValue);
js.append(";\n");
return true;
}
@Override
public void appendCast(@NonNull JavaStream js, @Nullable Boolean isRequired, @Nullable Class<?> actualJavaClass, @NonNull SubStream subStream) {
appendCast(js, actualJavaClass, subStream);
js.append(".booleanValue()");
}
}