Merge branch 'GP-0_ryanmkurtz_PR-4102_nneonneo_javadoc'

This commit is contained in:
Ryan Kurtz 2022-03-31 01:11:42 -04:00
commit e80c245cf2
17 changed files with 23 additions and 35 deletions

View file

@ -157,7 +157,7 @@ public interface CompositeInternal extends Composite {
}
/**
* Dump composite and its components for use in {@link #toString()} representation.
* Dump composite and its components for use in {@link Object#toString()} representation.
* @param composite composite instance to be dumped
* @return formatted dump as string
*/
@ -174,7 +174,7 @@ public interface CompositeInternal extends Composite {
}
/**
* Dump all components for use in {@link #toString()} representation.
* Dump all components for use in {@link Object#toString()} representation.
*
* @param buffer string buffer
* @param pad padding to be used with each component output line

View file

@ -111,7 +111,7 @@ public abstract class DynamicDataType extends BuiltIn implements Dynamic {
/**
* Returns the first component containing the byte at the given offset.
* It is possible with zero-length components (see {@link DataTypeComponent#isZeroLength()})
* It is possible with zero-length components (see {@link DataType#isZeroLength()})
* and bitfields (see @DataTypeComponent#isBitFieldComponent()} for multiple components
* to share the same offset.
* @param offset the offset into the dataType

View file

@ -198,11 +198,6 @@ public interface Instruction extends CodeUnit, ProcessorContext {
* Get an array of PCode operations (micro code) that this instruction
* performs. NOTE: If includeOverrides is true, unique temporary varnodes
* may be produced which vary in size to those produced for other instructions.
* If your analysis is sensitive to this you should consider using
* {@link InstructionPrototype#getPcode(InstructionContext, PcodeOverride, UniqueAddressFactory)}
* instead with your own {@link UniqueAddressFactory} to prevent duplication within
* your scope of analysis.
* by this method may not be suitable for use with certain analysis
* @param includeOverrides if true any flow overrides will be factored
* into generated pcode.
* @return an array of Pcode operations,