/** * <copyright> * </copyright> * * */ package org.dresdenocl.language.ocl.resource.ocl.util; import org.eclipse.emf.common.util.URI; public class OclURIUtil { public boolean isInBinFolder(URI uri) { String[] segments = uri.segments(); for (String segment : segments) { if ("bin".equals(segment)) { return true; } } return false; } }