Commit 897f5f25 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ support class for dependency output

parent cb3ee2b5
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
package de.ugoe.cs.swe.T3Q;

import java.util.List;

import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.xtext.validation.FeatureBasedDiagnostic;

import com.google.common.collect.Lists;

public class TTCN3Dependency {
	private final Resource resource;
	private final List<String> messages;
	private final List<String> output;
	
	public TTCN3Dependency(final Resource resource) {
		this.resource = resource;
		this.messages  = Lists.newArrayList();
		this.output  = Lists.newArrayList();
	}

	public Resource getResource() {
		return resource;
	}

	public List<String> getOutput() {
		return output;
	}
	public List<String> getMessages() {
		return messages;
	}
}