tokens
sequence
ner_tags
sequence
[ "What", "is", "the", "simplest", "way", "to", "do", "it", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "A", "simple", "approach", "would", "be", "to", "create", "a", "new", "image", "with", "the", "desired", "size", ",", "transform", "a", "Graphics2D", "of", "this", "image", "according", "to", "the", "selected", "square", "region", ",", "and", "then", "simply", "paint", "the", "original", "image", "into", "this", "graphics", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-User_Interface_Element", "O" ]
[ "Control", "'", "GridView1", "'", "of", "type", "'", "GridView", "'", "must", "be", "placed", "inside", "a", "form", "tag", "with", "runat", "=", "server", "." ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "O" ]
[ "When", "I", "export", "the", "Gridview", "to", "Excel", ",", "I", "get", "an", "error", "like", "this", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Can", "you", "help", "me", "?" ]
[ "O", "O", "O", "O", "O" ]
[ "My", "code", "example", "is", "as", "follows", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "think", ",", "you", "can", "use", "below", "the", "example", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ ".aspx", "file", "contens" ]
[ "B-File_Type", "O", "O" ]
[ ".aspx.vb", "file", "contents" ]
[ "B-File_Type", "O", "O" ]
[ "There", "are", "two", "views", "in", "my", "application", "." ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O" ]
[ "After", "launching", "the", "app", "I", "switch", "the", "view", "with", "button", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "But", "whenever", "i", "switch", "the", "view", "the", "code", "above", "initialize", "the", "view", "." ]
[ "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "I", "want", "to", "maintain", "previous", "status", "of", "the", "view", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "How", "can", "I", "solve", "this", "problem", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "On", "an", "iPad", "this", "will", "present", "the", "second", "view", "modally", ",", "as", "dictated", "by", "the", "views", "modalTransitionStyle", "." ]
[ "O", "O", "B-Device", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "So", "there", "you", "could", "get", "back", "to", "the", "original", "by", "calling", "dismissViewControllerAnimated:completion", ":", "on", "the", "new", "ViewController", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Library", "O" ]
[ "On", "the", "iPhone", "you", "can", "use", "a", "UINavigationController", "in", "your", "storyboard", "to", "push", "and", "then", "pop", "the", "secondViewController", "." ]
[ "O", "O", "B-Device", "O", "O", "O", "O", "B-Class", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "As", "long", "as", "you", "are", "using", "the", "storyboard", ",", "you", "can", "set", "up", "the", "transition", "there", "and", "the", "perform", "it", "using", "-", "performSegueWithIdentifier:sender", ":", "from", "your", "button", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "B-User_Interface_Element", "O" ]
[ "Or", "for", "that", "matter", "you", "can", "connect", "the", "segue", "directly", "to", "your", "button", "in", "which", "case", "the", "transition", "will", "be", "performed", "without", "additional", "code", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "instantiateViewControllerWithIdentifier", ":", "always", "returns", "a", "new", "instance", "of", "an", "UIViewController", "." ]
[ "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "You", "need", "to", "keep", "a", "reference", "to", "a", "previous", "one", "if", "you", "do", "n't", "want", "to", "create", "it", "over", "and", "over", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "trying", "to", "make", "Avplayer", "resume", "from", "where", "it", "stopped", ",", "by", "make", "global", "value", "of", "type", "CMtime", "and", "store", "currenttime", "then", "use", "it", "to", "resume", "from", "where", "it", "stopped" ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "B-Class", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "My", "code", ":" ]
[ "O", "O", "O" ]
[ "When", "I", "try", "to", "use", "seek(to:)" ]
[ "O", "O", "O", "O", "O", "B-Function" ]
[ "nothing", "changed", "it", "also", "start", "from", "beginning", "!" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "try", "to", "change", "currenttime", "by", "using" ]
[ "O", "O", "O", "O", "B-Variable", "O", "O" ]
[ "I", "did", "n't", "know", "why", "it", "always", "start", "from", "beginning" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "was", "using", "AVAudioPlayer", "and", "it", "was", "much", "easier", "than", "AVplayer" ]
[ "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-Class" ]
[ "but", "because", "I", "need", "to", "stream", "Audio", "I", "change", "it", "to", "AVplayer" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class" ]
[ "I", "found", "a", "solution", "," ]
[ "O", "O", "O", "O", "O" ]
[ "I", "got", "seconds", "from", "CMtime", "using", "this", "code", ",", "and", "add", "it", "on", "Unwind", "segue", "function" ]
[ "O", "O", "B-Variable", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O" ]
[ "2.in", "viewdidload", "I", "use", "this", "code" ]
[ "O", "B-Function", "O", "O", "O", "O" ]
[ "it", "'s", "a", "solution", "but", "not", "a", "perfect", "solution", ",", "everytime", "it", "re-download", "a", "audio", "file", "to", "resume", "it", ",", "that", "mean", "If", "I", "play", "a", "file", "and", "then", "I", "return", "to", "tableview", "then", "return", "back", ",", "it", "will", "purse", "and", "wait", "some", "second", "then", "play", "it", "from", "where", "it", "stopped", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "table", "cell", "in", "my", "xml", "file", ",", "which", "has", "two", "TextViews", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Now", ",", "i", "want", "to", "create", "copies", "of", "that", "cell", "and", "assign", "values", "into", "through", "the", "java", "code", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O" ]
[ "All", "other", "cells", "should", "have", "the", "same", "property", "as", "that", "one", "." ]
[ "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "(", "cell", "background", "color", ",", "font", "type", ",", "font", "size", "etc", ")", "." ]
[ "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "That", "cell", "will", "span", "the", "entire", "first", "row", ",", "and", "then", "the", "resulting", "row", "will", "be", "used", "to", "create", "multiple", "rows", "after", "that", "." ]
[ "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "Can", "anyone", "help", "me", "achieve", "the", "above", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "new", "to", "android", "programming", "." ]
[ "O", "O", "O", "O", "B-Operating_System", "O", "O" ]
[ "This", "is", "my", "part", "of", "my", "xml", "file", "." ]
[ "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "When", "I", "run", ".gradlew", "createCoverageReport", "I", "get", "the", "following", "error", ":" ]
[ "O", "O", "O", "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "But", "when", "I", "access", "that", "index.html", "it", "looks", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O", "O" ]
[ "I", "do", "n't", "understand", "why", "its", "crashing.", ".", "the", "build", "gets", "to", "about", "98%", "before", "this", "fail", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "nexus", "5", "connected", "running", "4.4.", "." ]
[ "O", "O", "O", "B-Device", "B-Version", "O", "O", "B-Version", "O" ]
[ "my", "build.gradle", "looks", "like", "this", ":" ]
[ "O", "B-File_Name", "O", "O", "O", "O" ]
[ "The", "apply", "plug-in", "part", "causes", "the", "tests", "to", "not", "run", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Like", "Bill", "suggested", "gradle", "'s", "latest", "release", "has", "jacoco", "packaged", "within", "so", "it", "need", "n't", "be", "applied", "anymore", "." ]
[ "O", "B-User_Name", "O", "B-Application", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "My", "tests", "recently", "broke", "because", "of", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Removing", "that", "line", "fixed", "my", "issue", "and", "I", "get", "my", "reports", "again", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Couple", "things", "." ]
[ "O", "O", "O" ]
[ "To", "fix", "your", "first", "error", "\"", "Instrumentation", "run", "failed", "due", "to", "'", "java.lang.VerifyError", "'", "\"", ",", "upgrade", "your", "build", "tools", "to", "21+", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Error_Name", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "B-Version", "O" ]
[ "This", "is", "a", "bug", "in", "the", "android", "build", "tools", "that", "they", "have", "fixed", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "I-Application", "O", "O", "O", "O", "O" ]
[ "Hooray", "!" ]
[ "O", "O" ]
[ "You", "do", "n't", "have", "to", "apply", "the", "jacoco", "plugin", ",", "it", "is", "part", "of", "the", "android", "gradle", "plugin", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O" ]
[ "All", "you", "need", "is", "'", "testCoverageEnabled", "true", "'", "and", "it", "will", "create", "your", ".ec", "file", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "Applying", "the", "plugin", "does", "n't", "hurt", "as", "far", "as", "I", "know", ",", "but", "it", "'s", "helpful", "to", "get", "your", "mind", "around", "the", "fact", "that", "jacoco", "is", "in", "there", "already", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O" ]
[ "The", "override", "for", "'", "reportsDir", "'", "might", "not", "work", ",", "so", "you", "should", "also", "look", "for", "your", "report", "in", "'", "build/outputs/reports/coverage/debug/index.html", "'", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "how", "to", "map", "closest", "craigslist", "site", "for", "a", "given", "address(zip)", "?" ]
[ "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O" ]
[ "or", "I", "was", "thinking", "of", "making", "that", "mapping", "myself", "by", "looking", "at", "the", "list", "of", "craigslist", "sites", "city-wise/state", "-wise", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O" ]
[ "Indeed", ",", "I", "believe", "the", "best", "solution", "is", "to", "get", "a", "list", "of", "Craigslist", "sites/cities", ",", "prebuild", "a", "mapping", "of", "cities", "to", "coordinates", "using", "some", "geocoding", "API", "(", "Tiny", "Geocoder", "comes", "to", "mind", "but", "Yahoo", "and", "Bing", "offer", "good", "solutions", "too", ")", ",", "and", "then", "storing", "it", "in", "a", "way", "that", "makes", "sort-by-nearest", "easy", "(", "say", ",", "MySQL", "'s", "geospatial", "extensions", "or", "MongoDB's", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "B-Library", "I-Library", "O", "O", "O", "O", "B-Website", "O", "B-Website", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "I", "came", "across", "a", "bug", "in", "code", "that", "is", "only", "reproduced", "when", "the", "code", "is", "built", "with", "optimizations", "enabled", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "made", "a", "console", "app", "that", "replicates", "the", "logic", "for", "testing", "(", "code", "below", ")", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "'ll", "see", "that", "when", "optimization", "is", "enabled", "'", "value", "'", "becomes", "null", "after", "execution", "of", "this", "invalid", "logic", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "fix", "is", "straight", "forward", "and", "is", "commented", "out", "below", "the", "offending", "code", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "..", "." ]
[ "O", "O", "O" ]
[ "I", "'m", "more", "concerned", "that", "I", "may", "have", "come", "across", "a", "bug", "in", "the", "assembler", "or", "perhaps", "someone", "else", "has", "an", "explanation", "of", "why", "value", "gets", "set", "to", "null", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O" ]
[ "The", "normal", "output", "should", "be", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "The", "buggy", "output", "is", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "My", "Env", "is", "a", "VM", "running", "Windows", "Server", "2003", "R2", "with", ".NET", "3.5", "SP1", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "B-Operating_System", "I-Operating_System", "B-Version", "I-Version", "O", "B-Library", "B-Version", "I-Version", "O" ]
[ "Using", "VS2008", "Team", "System", "." ]
[ "O", "B-Application", "O", "O", "O" ]
[ "Thanks", "," ]
[ "O", "O" ]
[ "Brian" ]
[ "B-User_Name" ]
[ "Yes", ",", "your", "expression", "fatally", "confuses", "the", "JIT", "optimizer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "generated", "machine", "code", "looks", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "bug", "occurs", "at", "address", "41", ",", "the", "optimizer", "has", "concluded", "that", "value", "will", "always", "be", "null", "so", "it", "directly", "passes", "a", "null", "to", "String.Concat()", "." ]
[ "O", "O", "O", "O", "B-Variable", "B-Value", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "B-Value", "O", "B-Function", "O" ]
[ "For", "comparison", ",", "this", "is", "the", "code", "that", "'s", "generated", "when", "JIT", "optimization", "is", "turned", "off", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "code", "got", "moved", ",", "but", "do", "note", "that", "at", "address", "5c", "it", "now", "uses", "the", "local", "variable", "(", "value", ")", "instead", "of", "null", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "B-Value", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O" ]
[ "You", "can", "report", "this", "bug", "at", "connect.microsoft.com", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "workaround", "is", "simple", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "This", "bug", "seems", "to", "have", "been", "fixed", "in", ".NET", "4", "(", "beta", "2)", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "B-Version", "O", "B-Version", "I-Version", "O" ]
[ "Here", "'s", "the", "optimized", "x86", "disassembly", "for", "the", "bit", "nobugz", "highlighted", ",", "above", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "program", "also", "displays", "the", "expected", "output", "in", "both", "optimized", "and", "unoptimized", "modes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "use", "to", "develop", "one", "web", "app", "using", "Forge", "API", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "I-Library", "O" ]
[ "It", "'s", "working", "well", "and", "good", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "At", "the", "same", "time", "am", "using", "design", "automation", "in", "forge", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "I", "can", "able", "to", "create", "Package", "and", "it", "'s", "working", "fine", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "will", "process", "the", "dwg", "file", "using", "forge", "api", "preparing", "to", "viewer", "." ]
[ "O", "O", "O", "O", "B-File_Type", "O", "O", "B-Library", "I-Library", "O", "O", "O", "O" ]
[ "I", "can", "able", "to", "view", "dwg", "in", "browser", "." ]
[ "O", "O", "O", "O", "O", "B-File_Type", "O", "B-Application", "O" ]
[ "My", "issue", "is", "I", "have", "viewer", "click", "event", "the", "event", "click", "populate", "the", "element", "id", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "O" ]
[ "However", ",", "my", "package", "I", "can", "get", "only", "the", "object", "id", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "O" ]
[ "element", "id", "and", "object", "id", "totally", "different", "." ]
[ "B-Variable", "I-Variable", "O", "B-Variable", "I-Variable", "O", "O", "O" ]
[ "What", "is", "the", "conman", "id", "each", "object", "client", "and", "server", "side", "." ]
[ "O", "O", "O", "B-Variable", "I-Variable", "O", "O", "O", "O", "O", "O", "O" ]
[ "Summary", ":", "when", "user", "click", "the", "object", "in", "viewer", "I", "want", "to", "capture", "id", "and", "store", "my", "local", "database", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "and", "using", "package", "I", "need", "to", "process", "the", "user", "clicked", "object", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Example", ":", "when", "user", "click", "the", "drawing", "number", "in", "viewer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "From", "the", "next", "time", "I", "want", "change", "the", "drawing", "number", "dynamically", "using", "call", "package", "from", "C#", "code", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O" ]
[ "For", "an", "RVT", "file", ",", "one", "easy", "way", "to", "handle", "this", "is", "to", "extract", "the", "Forge", "externalId", "from", "the", "Forge", "object", "properties", "." ]
[ "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "B-Variable", "O", "O", "B-Application", "O", "O", "O" ]
[ "That", "is", "equal", "to", "the", "Revit", "element", "UniqueId", "property", "." ]
[ "O", "O", "O", "O", "O", "B-Library", "O", "B-Variable", "O", "O" ]
[ "The", "RvtMetaProp", "Revit", "add-in", "makes", "use", "of", "this", "." ]
[ "O", "B-Function", "B-Library", "O", "O", "O", "O", "O", "O" ]