--- old/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/model/CReferencePropertyInfo.java 2014-11-25 12:17:08.157617490 +0000 +++ new/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/model/CReferencePropertyInfo.java 2014-11-25 12:17:08.083616667 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -171,6 +171,11 @@ return visitor.onReference(this); } + @Override + public R accept(CPropertyVisitor2 visitor, P p) { + return visitor.visit(this, p); + } + public CAdapter getAdapter() { return null; }