KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > core > PyEllipsis


1 // Copyright (c) Corporation for National Research Initiatives
2
package org.python.core;
3
4 /**
5  * A class representing the singleton Ellipsis <code>...</code>
6  * object.
7  */

8 public class PyEllipsis extends PySingleton {
9     PyEllipsis() {
10         super("Ellipsis");
11     }
12 }
13
Popular Tags