Skip to content

Commit d0c95c7

Browse files
committed
Break up DDRProcessor.java
It has grown to such size that breaking it up is long overdue anyway, but the immediate impetus was to do a trial javadoc run checking everything (--show-module-contents all --show-packages-all --show-types private --show-members private). I have no intention of changing the doc build options to build all that as a matter of course, but it ought to be possible, so a run with those settings is useful to identify and fix any javadoc-reported errors that cause the generation to fail, as opposed to mere warnings. Javadoc was immediately displeased by the multi-class compilation unit here.
1 parent 116fd50 commit d0c95c7

12 files changed

Lines changed: 7372 additions & 7164 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright (c) 2016-2025 Tada AB and other contributors, as listed below.
3+
*
4+
* All rights reserved. This program and the accompanying materials
5+
* are made available under the terms of the The BSD 3-Clause License
6+
* which accompanies this distribution, and is available at
7+
* http://opensource.org/licenses/BSD-3-Clause
8+
*
9+
* Contributors:
10+
* Purdue University
11+
* Chapman Flack
12+
*/
13+
package org.postgresql.pljava.annotation.processing;
14+
15+
import javax.lang.model.element.Element;
16+
17+
interface Commentable
18+
{
19+
public String comment();
20+
public void setComment( Object o, boolean explicit, Element e);
21+
public String derivedComment( Element e);
22+
}

0 commit comments

Comments
 (0)