langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/PropertyBuilder.java
changeset 44460 9adfc635dd7b
parent 42000 8b7412f7eecd
child 45417 f7479ee8de69
equal deleted inserted replaced
44459:5224425af378 44460:9adfc635dd7b
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 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             TypeElement typeElement,
    88             TypeElement typeElement,
    89             PropertyWriter writer) {
    89             PropertyWriter writer) {
    90         super(context);
    90         super(context);
    91         this.typeElement = typeElement;
    91         this.typeElement = typeElement;
    92         this.writer = writer;
    92         this.writer = writer;
    93         visibleMemberMap =
    93         visibleMemberMap = configuration.getVisibleMemberMap(typeElement,
    94                 new VisibleMemberMap(
    94                 VisibleMemberMap.Kind.PROPERTIES);
    95                 typeElement,
       
    96                 VisibleMemberMap.Kind.PROPERTIES,
       
    97                 configuration);
       
    98         properties = visibleMemberMap.getMembers(typeElement);
    95         properties = visibleMemberMap.getMembers(typeElement);
    99     }
    96     }
   100 
    97 
   101     /**
    98     /**
   102      * Construct a new PropertyBuilder.
    99      * Construct a new PropertyBuilder.