mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-0: Fixing some javadoc
This commit is contained in:
parent
8577082976
commit
4eefa887fb
88 changed files with 671 additions and 653 deletions
|
@ -4,9 +4,9 @@
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
@ -29,7 +29,7 @@ import utility.application.ApplicationUtilities;
|
|||
* <p>
|
||||
* Examples:
|
||||
* <ul>
|
||||
* <li>ghidra-7.4_DEV
|
||||
* <li>ghidra-7.4_DEV</li>
|
||||
* </ul>
|
||||
*/
|
||||
public class ApplicationIdentifier {
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
@ -18,16 +18,16 @@ package ghidra.framework;
|
|||
/**
|
||||
* Class to represent an application's version information.
|
||||
* <p>
|
||||
* The version format is \d\.\d(\.\d)?(\-.+)?
|
||||
* The version format is {@code \d\.\d(\.\d)?(\-.+)?}
|
||||
* <p>
|
||||
* Note: this class has a natural ordering that is inconsistent with equals (the <code>tag</code>
|
||||
* part of the version is disregarded in the {@link #compareTo(ApplicationVersion)} method).
|
||||
* <p>
|
||||
* Examples:
|
||||
* <ul>
|
||||
* <li>7.4
|
||||
* <li>7.4.1
|
||||
* <li>7.4.1-BETA
|
||||
* <li>7.4</li>
|
||||
* <li>7.4.1</li>
|
||||
* <li>7.4.1-BETA</li>
|
||||
* </ul>
|
||||
*/
|
||||
public class ApplicationVersion implements Comparable<ApplicationVersion> {
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
@ -82,10 +82,10 @@ public class UserSearchUtils {
|
|||
* <b>Note: </b>This method <b>will</b> escape regular expression
|
||||
* characters, such as:
|
||||
* <ul>
|
||||
* <li>?
|
||||
* <li>.
|
||||
* <li>$
|
||||
* <li>...and many others
|
||||
* <li>?</li>
|
||||
* <li>.</li>
|
||||
* <li>$</li>
|
||||
* <li>...and many others</li>
|
||||
* </ul>
|
||||
* Thus, this method is not meant to <b>accept</b> regular expressions, but
|
||||
* rather <b>generates</b> regular expressions.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue