langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/AnnotationTypeFieldBuilder.java
changeset 44460 9adfc635dd7b
parent 42000 8b7412f7eecd
child 45417 f7479ee8de69
equal deleted inserted replaced
44459:5224425af378 44460:9adfc635dd7b
     1 /*
     1 /*
     2  * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    88             AnnotationTypeFieldWriter writer,
    88             AnnotationTypeFieldWriter writer,
    89             VisibleMemberMap.Kind memberType) {
    89             VisibleMemberMap.Kind memberType) {
    90         super(context);
    90         super(context);
    91         this.typeElement = typeElement;
    91         this.typeElement = typeElement;
    92         this.writer = writer;
    92         this.writer = writer;
    93         this.visibleMemberMap = new VisibleMemberMap(typeElement, memberType, configuration);
    93         this.visibleMemberMap = configuration.getVisibleMemberMap(typeElement, memberType);
    94         this.members = this.visibleMemberMap.getMembers(typeElement);
    94         this.members = this.visibleMemberMap.getMembers(typeElement);
    95     }
    95     }
    96 
    96 
    97 
    97 
    98     /**
    98     /**