/******************************************************************************* * Copyright (c) 2008 Olivier Moises * * 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: * Olivier Moises- initial API and implementation *******************************************************************************/ package org.eclipse.wazaabi.locationpaths.model; public class Axis { public static final int CHILD = 1; public static final int DESCENDANT_OR_SELF = 2; public static final int ATTRIBUTE = 3; public static final int REFERENCE = 4; public static final int SELF = 5; public static final int PARENT = 6; public static final int VARIABLE = 7; public static final int CLASS = 8; public static final int PACKAGE = 9; }