1 /*******************************************************************************
2  * Copyright (c) 2008, 2014 Angelo Zerr and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
13  *     IBM Corporation - ongoing development
14  *******************************************************************************/
15 
16 package org.eclipse.e4.ui.css.core.impl.dom;
17 
18 import org.w3c.dom.css.CSSPrimitiveValue;
19 import org.w3c.dom.css.Rect;
20 
21 public class RectImpl implements Rect {
22 
23 	private static final String NOT_YET_IMPLEMENTED = "NOT YET IMPLEMENTED"; //$NON-NLS-1$
24 
25 	@Override
getBottom()26 	public CSSPrimitiveValue getBottom() {
27 		throw new UnsupportedOperationException(NOT_YET_IMPLEMENTED);
28 	}
29 
30 	@Override
getLeft()31 	public CSSPrimitiveValue getLeft() {
32 		throw new UnsupportedOperationException(NOT_YET_IMPLEMENTED);
33 	}
34 
35 	@Override
getRight()36 	public CSSPrimitiveValue getRight() {
37 		throw new UnsupportedOperationException(NOT_YET_IMPLEMENTED);
38 	}
39 
40 	@Override
getTop()41 	public CSSPrimitiveValue getTop() {
42 		throw new UnsupportedOperationException(NOT_YET_IMPLEMENTED);
43 	}
44 
45 }
46