자산 카테고리화 해제

자산에서 카테고리를 제거하려면 RAMAsset.uncategorize(SubCategory) 또는 RAMAsset.uncategorize(SubCategory, String)을 사용하십시오.

                //Uncategorize using the category schema fetched from the session
                newAsset.uncategorize(priceCategory, "25000");
                
                //Uncategorize using a category fetched through the asset
                newAsset.uncategorize(colorCategory, "Red");
                
                //Uncategorize using sub category objects
                newAsset.uncategorize(domestic);
                newAsset.uncategorize(honda);
                newAsset.uncategorize(camry);
                
                session.put(newAsset, new NullProgressMonitor());

피드백