documentation

Does there exist a “wiki” for editing doxygen comments? [closed]

浪子不回头ぞ 提交于 2019-12-12 07:44:53
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I'm working on a fairly big open source RTS game engine (Spring). I recently added a bunch of new C++ functions callable by Lua, and am wondering how to best document them, and at the same time also stimulate people to write/update documentation for a lot of existing Lua call-outs. So I figured it may be nice if I

Undocumented functions should not be viewable/displayed in the list - Issue document only for documented entities

半城伤御伤魂 提交于 2019-12-12 05:38:40
问题 class EXAMPLE{ public func1() private func2() func3() } I have checked for documented entities only. I have documentation for func1 and func3 but no documentation for func2. I have EXTRACT_ALL = NO EXTRACT_PRIVATE = NO EXTRACT_STATIC = NO EXTRACT_LOCAL_CLASSES = YES EXTRACT_LOCAL_METHODS = NO But after the documentation is generated I still see the signature of func2 without hyperlink. Does anyone know a way to show only those functions explicitly documented? 回答1: You must turn on the EXTRACT

How to integrate Cordoba Camera plugin in Ionic 1 project

随声附和 提交于 2019-12-12 04:31:59
问题 I'm trying to implement a camera to my Ionic 1 project. But I can't find any reliable examples of how to do that. I found: https://www.thepolyglotdeveloper.com/2014/09/use-android-ios-camera-ionic-framework/ and https://github.com/apache/cordova-plugin-camera and some older Stack Overflow entries. Still, I haven't got it running myself. 回答1: You're on the right track already! What you found is the most popular camera plugin for Cordova: https://github.com/apache/cordova-plugin-camera This is

JsDoc toolkit and Namespace - Warning trying to .. without

非 Y 不嫁゛ 提交于 2019-12-12 04:31:45
问题 I am using jsdoc-toolkit with the namespace library of Mike Koss. The code looks like this namespace.module('a.b', // this is the namespace // @param {Object} exports visible classes within this namespace // @param {function} required other namespaces function (exports, require) { var entityBase = require("a.base"); var util = require("a.util"); // @class BlaBla // @constructor // @property {String} .. // @property {String} .. // @property {String} .. // @property {..} .... // @param {Array}

Patching a bug in the JDK for an individual application

痞子三分冷 提交于 2019-12-12 03:48:13
问题 I have established through another question that the problem I'm having with my JavaFX program is due to a bug in the JDK that is not going to be fixed anytime soon. I was even informed that the bug is in PrismTextLayout. So having found the source code for this, how would I implement some kind of patch which would allow me to fix this bug for my application only. Obviously if I did fix the problem, I would contribute it back to a future JDK, but for now I just want a quick fix. I thought a

Guide for working with Linux thread priorities and scheduling policies? [closed]

纵然是瞬间 提交于 2019-12-12 01:53:17
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I'm having trouble getting the hang of thread(/process) prioritization on Linux, scheduling policy selection, what to choose when and how, and what the exact effects are. Is there any documentation (like a guide) somewhere, preferably with concrete examples and timelines, which I could consult? 回答1: I'm having

Hibernate Documentation: Parent/Child type relationship

自作多情 提交于 2019-12-11 22:35:10
问题 In the Hibernate documentation, there is such a sentence: The default semantics of a one-to-many association in Hibernate are much less close to the usual semantics of a parent/child relationship than those of a composite element mapping. I found this sentence to be very confusing, can somebody explain what it means? Also, on the Best Pratices page, you will find Write fine-grained classes and map them using <component> I'm not sure what to make of these. Is mapping using <component> when you

JDK Documentation searchable offline? [closed]

你离开我真会死。 提交于 2019-12-11 14:11:46
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . Can anyone help? i have downloaded the jdk docs (7) to my pc and i can open it up to look at all the packages and classes in the html but it appears i can't search. You can on the online version but it appears not on the offline version, or maybe i am missing something. can anyone help or suggest an alternative ?

Ignore missing documentation if superclass has documentation

筅森魡賤 提交于 2019-12-11 14:06:48
问题 Is there any way to tell SonarQube not to count an overriding method into the public documented api statistics if the overridden method is documented? SonarQube finds many methods lacking annotation due to the case below. I know there is an annotation to ignore certain rules of SonarQube, however we don't want to add code to our project in order to satisfy SonarQube. 回答1: You could use inherit doc. /** * {@inheritDoc} */ @Override 来源: https://stackoverflow.com/questions/34070485/ignore

Doxygen Documentation for WPF

こ雲淡風輕ζ 提交于 2019-12-11 13:59:29
问题 I am currently in the process of creating a documentation for my C# code. I've done a lot of ordinary source code and set up doxygen to create HTML out of it. Finally I arrived at the UI which is done in WPF, so both XAML and source code. Now my question is, what is the best way to document these files? Comments are possible in XAML but not that useful as they cannot be nested. Also I don't know if Doxygen can possibly handle XAML documentation. So should everything be documented in the xaml