MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / doc

Method doc

src/main/java/field/utility/Dict.java:187–201  ·  view source on GitHub ↗
(String doc)

Source from the content-addressed store, hash-verified

185 }
186
187 public <T> Prop<T> doc(String doc) {
188 Prop on = this;
189 if (!isCanon()) {
190 Prop<T> already = (Prop<T>) findCanon();
191 if (already == null) {
192 toCanon();
193 on.setCanon();
194 } else {
195 on = already;
196 }
197 }
198
199 on.documentation = doc;
200 return (Prop<T>) on;
201 }
202
203 public String getDocumentation() {
204 return documentation;

Callers 15

OpenClass · 0.80
DefaultMenusClass · 0.80
FrameManipulationClass · 0.80
MarkingMenusClass · 0.80
BoxClass · 0.80
FLineDrawingClass · 0.80
FLineInteractionClass · 0.80
DrawingClass · 0.80
BoxesClass · 0.80
CallbacksClass · 0.80
MeshesClass · 0.80
TimeSliderClass · 0.80

Calls 4

isCanonMethod · 0.95
findCanonMethod · 0.95
toCanonMethod · 0.95
setCanonMethod · 0.95

Tested by

no test coverage detected