Source code: org/sablecc/sablecc/ListCast.java
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2 * This file is part of SableCC. *
3 * See the file "LICENSE" for copyright information and the *
4 * terms and conditions for copying, distribution and *
5 * modification of SableCC. *
6 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
7
8 package org.sablecc.sablecc;
9
10 import java.util.*;
11 import com.sun.java.util.collections.*;
12
13 public class ListCast implements Cast
14 {
15 public final static ListCast instance = new ListCast();
16
17 private ListCast()
18 {
19 }
20
21 public Object cast(Object o)
22 {
23 return (List) o;
24 }
25 }
26