diff options
author | Sundong Ahn <sundongahn@google.com> | 2019-02-11 15:00:43 +0900 |
---|---|---|
committer | Sundong Ahn <sundongahn@google.com> | 2019-02-11 15:00:43 +0900 |
commit | 4001118df8ff580a3d17301510e2c705850cce3e (patch) | |
tree | 9da181f820aeda998a2c411ca157114bdca9c421 | |
parent | 3e9aeb2ed3ad727216395967009ea1a0c3b438b6 (diff) | |
download | platform_hardware_interfaces-4001118df8ff580a3d17301510e2c705850cce3e.tar.gz platform_hardware_interfaces-4001118df8ff580a3d17301510e2c705850cce3e.tar.bz2 platform_hardware_interfaces-4001118df8ff580a3d17301510e2c705850cce3e.zip |
Change class and variable names
The rule to generate class and variable names is changed.
So update api names according to this rule.
Test: make update-api && make checkapi
Bug: 123777669
Change-Id: I5ba41679c863d8f57e9c43821b311ca09e9b4ea2
-rw-r--r-- | audio/effect/5.0/xml/api/current.txt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/audio/effect/5.0/xml/api/current.txt b/audio/effect/5.0/xml/api/current.txt index 473bb10358..ef467c9a54 100644 --- a/audio/effect/5.0/xml/api/current.txt +++ b/audio/effect/5.0/xml/api/current.txt @@ -1,27 +1,27 @@ // Signature format: 2.0 package audio.effects.V5_0 { - public class Audioeffectsconf { - ctor public Audioeffectsconf(); + public class AudioEffectsConf { + ctor public AudioEffectsConf(); method public audio.effects.V5_0.EffectsType getEffects(); method public audio.effects.V5_0.LibrariesType getLibraries(); - method public audio.effects.V5_0.Audioeffectsconf.Postprocess getPostprocess(); - method public audio.effects.V5_0.Audioeffectsconf.Preprocess getPreprocess(); + method public audio.effects.V5_0.AudioEffectsConf.Postprocess getPostprocess(); + method public audio.effects.V5_0.AudioEffectsConf.Preprocess getPreprocess(); method public audio.effects.V5_0.VersionType getVersion(); method public void setEffects(audio.effects.V5_0.EffectsType); method public void setLibraries(audio.effects.V5_0.LibrariesType); - method public void setPostprocess(audio.effects.V5_0.Audioeffectsconf.Postprocess); - method public void setPreprocess(audio.effects.V5_0.Audioeffectsconf.Preprocess); + method public void setPostprocess(audio.effects.V5_0.AudioEffectsConf.Postprocess); + method public void setPreprocess(audio.effects.V5_0.AudioEffectsConf.Preprocess); method public void setVersion(audio.effects.V5_0.VersionType); } - public static class Audioeffectsconf.Postprocess { - ctor public Audioeffectsconf.Postprocess(); + public static class AudioEffectsConf.Postprocess { + ctor public AudioEffectsConf.Postprocess(); method public java.util.List<audio.effects.V5_0.StreamPostprocessType> getStream(); } - public static class Audioeffectsconf.Preprocess { - ctor public Audioeffectsconf.Preprocess(); + public static class AudioEffectsConf.Preprocess { + ctor public AudioEffectsConf.Preprocess(); method public java.util.List<audio.effects.V5_0.StreamPreprocessType> getStream(); } @@ -123,7 +123,7 @@ package audio.effects.V5_0 { public class XmlParser { ctor public XmlParser(); - method public static audio.effects.V5_0.Audioeffectsconf read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException; + method public static audio.effects.V5_0.AudioEffectsConf read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException; method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; } |