From owner-freebsd-java@FreeBSD.ORG Wed Sep 1 11:33:16 2010 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20CC410656B7 for ; Wed, 1 Sep 2010 11:33:16 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id D48818FC14 for ; Wed, 1 Sep 2010 11:33:15 +0000 (UTC) Received: by vws7 with SMTP id 7so7473571vws.13 for ; Wed, 01 Sep 2010 04:33:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.220.127.94 with SMTP id f30mr3888684vcs.215.1283339389382; Wed, 01 Sep 2010 04:09:49 -0700 (PDT) Received: by 10.220.200.8 with HTTP; Wed, 1 Sep 2010 04:09:49 -0700 (PDT) X-Originating-IP: [71.1.133.114] Date: Wed, 1 Sep 2010 04:09:49 -0700 Message-ID: From: Rob Farmer To: freebsd-java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: java/jdk16 missing javax.xml.bind.annotation.XmlSeeAlso X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 11:33:16 -0000 With java/jdk16: Animal.java: import javax.xml.bind.annotation.XmlSeeAlso; @XmlSeeAlso ({Dog.class,Cat.class}) class Animal {} class Dog extends Animal {} class Cat extends Animal {} javac Animal.java Animal.java:1: cannot find symbol symbol : class XmlSeeAlso location: package javax.xml.bind.annotation import javax.xml.bind.annotation.XmlSeeAlso; ^ Animal.java:3: cannot find symbol symbol: class XmlSeeAlso @XmlSeeAlso ({Dog.class,Cat.class}) ^ 2 errors This class seems to be missing, yet it is listed in the JDK 6 docs: http://download.oracle.com/javase/6/docs/api/javax/xml/bind/annotation/XmlSeeAlso.html -- Rob Farmer