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

org.eclipse.epsilon.emc.yaml.YamlObject Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2022 The University of York.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 * 
 * Contributors:
 *     Ionut Predoaia - initial API and implementation
 ******************************************************************************/
package org.eclipse.epsilon.emc.yaml;

import java.util.Map;

public class YamlObject {

	protected Object value;
	protected Map parentNode;
	protected boolean isFound;
	
	public YamlObject(Object value) {
		this.value = value;
	}
	
	public Object getValue() {
		return this.value;
	}
	
	public Map getParentNode() {
		return parentNode;
	}

	public void setParentNode(Map parentNode) {
		this.parentNode = parentNode;
	}
	
	public void setIsFound(boolean isFound) {
		this.isFound = isFound;
	}
	
	public boolean isFound() {
		return (this.isFound || (this.parentNode != null));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy