/* * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.css; public enum Combinator { CHILD { public String toString() { return ">"; } }, DESCENDANT { public String toString() { return " "; } } }